/* === CONFIGURAÇÕES GLOBAIS E VARIÁVEIS === */
:root {
    --color-background-light: #FFFFFF;
    --color-background-section: #f8f9fa; 
    --color-accent: #9F2432; 
    --color-accent-hover: #B92B3A;
    --color-text-dark: #212529;
    --color-text-medium: #6c757d;
    --font-display: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-background-light);
    color: var(--color-text-dark);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
}

body.mobile-menu-open {
    overflow: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Estilo para o Skip Link quando focado */
.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
    display: block;
    padding: 1rem;
    background-color: var(--color-accent);
    color: var(--color-background-light);
    text-align: center;
    z-index: 10000;
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--color-accent);
    font-weight: 700;
}

h1.logo {
    font-size: 1.8rem;
    margin: 0;
}

h3 {
   color: var(--color-text-dark);
}

.section-title {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 3rem);
    margin-bottom: 1rem;
    color: var(--color-text-dark);
}

.dark .section-title,
.page-section.dark .section-title {
     color: var(--color-text-dark);
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
    color: var(--color-text-medium);
    font-weight: 300;
}

/* === TOP BAR === */
.top-bar {
    background-color: var(--color-accent);
    color: var(--color-background-light);
    height: 40px;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 500;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
#rotating-text-container {
    flex-grow: 1;
    text-align: center;
    position: relative;
    height: 20px;
    margin-right: 20px;
}
.rotating-text-item {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.rotating-text-item.active {
    opacity: 1;
}
.top-bar a {
    color: var(--color-background-light);
    text-decoration: none;
    font-weight: 700;
    transition: opacity var(--transition-speed) ease;
    white-space: nowrap;
}
.top-bar a:hover {
    opacity: 0.8;
}

/* === HEADER & NAVEGAÇÃO === */
.header {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    width: 100%;
    border-bottom: 1px solid #eee;
    transition: all var(--transition-speed) ease;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h1.logo a {
    font-family: var(--font-display);
    color: var(--color-text-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: inherit;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--color-text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-speed) ease;
    position: relative;
    padding-bottom: 5px;
    cursor: pointer;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-accent);
    transition: width var(--transition-speed) ease;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--color-accent);
}

.nav-menu a:hover::after, .nav-menu a.active::after {
    width: 100%;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.mobile-menu-icon {
    display: none;
    font-size: 1.8rem;
    color: var(--color-text-dark);
    cursor: pointer;
    z-index: 1002;
    position: relative;
    width: 28px;
    height: 22px;
}
.mobile-menu-icon .fa-bars, .mobile-menu-icon .fa-times {
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s, transform 0.3s;
}
.mobile-menu-icon .fa-times { opacity: 0; transform: rotate(-90deg); }
.mobile-menu-icon.active .fa-bars { opacity: 0; transform: rotate(90deg); }
.mobile-menu-icon.active .fa-times { opacity: 1; transform: rotate(0); }

/* === OTIMIZAÇÃO PARA REDUCED MOTION / CONEXÕES LENTAS === */
.reduced-motion * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
}
.reduced-motion [data-aos] {
    transform: none !important;
    opacity: 1 !important;
}


/* === DARK MODE === */
.dark-mode-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.3rem;
    color: var(--color-text-dark);
    transition: color var(--transition-speed);
    position: relative;
    width: 25px;
    height: 25px;
}
.dark-mode-toggle:hover {
    color: var(--color-accent);
}
.dark-mode-toggle .fa-moon, .dark-mode-toggle .fa-sun {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s, transform 0.3s;
}
.dark-mode-toggle .fa-sun { opacity: 0; transform: translate(-50%, -50%) rotate(90deg); }

body.dark-mode {
    --color-background-light: #1a1a1a;
    --color-background-section: #242424;
    --color-text-dark: #f0f0f0;
    --color-text-medium: #a0a0a0;
    --color-accent: #e53935;
    --color-accent-hover: #f44336;
}
body.dark-mode .header {
    background-color: rgba(26, 26, 26, 0.85);
    border-bottom-color: #333;
}
body.dark-mode .nav-menu { background: rgba(26, 26, 26, 0.98); }
body.dark-mode .nav-menu a, body.dark-mode h1.logo a, body.dark-mode .mobile-menu-icon, body.dark-mode .dark-mode-toggle { color: var(--color-text-dark); }
body.dark-mode .card, 
body.dark-mode .post-content-wrapper,
body.dark-mode .contact-info, 
body.dark-mode .contact-form-wrapper,
body.dark-mode .privacy-content,
body.dark-mode .testimonial-swiper .swiper-slide {
    background: #2c2c2c;
    border-color: #444;
}
body.dark-mode .contact-form input,
body.dark-mode .contact-form textarea {
    background-color: #333;
    border-color: #555;
    color: var(--color-text-dark);
}
body.dark-mode .footer { background-color: #121212; }
body.dark-mode .dark-mode-toggle .fa-moon { opacity: 0; transform: translate(-50%, -50%) rotate(-90deg); }
body.dark-mode .dark-mode-toggle .fa-sun { opacity: 1; transform: translate(-50%, -50%) rotate(0); }

/* === SEÇÃO INICIAL (HERO) === */
.hero-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    display: flex;
    align-items: center;
    min-height: calc(85vh - 105px); /* header + topbar */
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.hero-text .hero-tagline {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero-text .hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4rem);
    color: var(--color-text-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.hero-text .hero-description {
    font-size: 1.2rem;
    color: var(--color-text-medium);
    margin-bottom: 2.5rem;
    max-width: 500px;
}
.hero-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 1rem 2.5rem;
    background-color: var(--color-accent);
    color: var(--color-background-light) !important;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: all var(--transition-speed);
    font-size: 1.1rem;
    border: 2px solid transparent;
}
.hero-cta-button:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-3px);
}
.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* === CARD HOVER EFFECT === */
.card {
    background: var(--color-background-light);
    border: 1px solid #EAEAEA;
    padding: 2.5rem;
    border-radius: 8px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.card .product-card-image-wrapper,
.card .segment-card-image-wrapper,
.card .blog-card-image-wrapper {
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    height: 180px;
    background-color: #f0f0f0;
}

.card .card-image {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    transition: transform 0.4s ease;
    object-fit: cover;
}

.card:hover .card-image {
    transform: scale(1.05);
}

.card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card p, .card ul {
    color: var(--color-text-medium);
}

/* === PRODUTOS, SEGMENTOS & BLOG GRIDS === */
.product-grid, .segment-grid, .blog-grid, .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card, .segment-card, .blog-card {
    text-align: left;
    display: flex;
    flex-direction: column;
    background: var(--color-background-light);
}

.product-card h3, .segment-card h3, .blog-card h3 {
     font-size: 1.3rem;
}

.product-card p, .blog-card p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
    color: var(--color-text-medium);
}

.product-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: auto;
    padding: 0.8rem 1.5rem;
    background-color: var(--color-accent);
    color: var(--color-background-light);
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    transition: all var(--transition-speed) ease;
    border: 2px solid var(--color-accent);
}

.product-cta-button:hover {
    background-color: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
}

.blog-card a {
    margin-top: auto;
    color: var(--color-accent);
    text-decoration: none;
    font-weight: bold;
    align-self: flex-start;
}

.blog-card a:hover {
    text-decoration: underline;
}

.view-all-container {
     text-align: center; 
     margin-top: 3rem;
}

.view-all-button {
    background-color: transparent;
    color: var(--color-accent);
    padding: 1rem 3rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-speed) ease;
    display: inline-block;
    cursor: pointer;
}

.view-all-button:hover {
    background-color: var(--color-accent);
    color: var(--color-background-light);
}

/* === FEATURES SECTION (HOME) === */
.home-features, .home-products, .home-segments, .home-testimonials, .home-blog,
.page-section {
    padding: 6rem 0;
}
.page-section.dark {
    background-color: var(--color-background-section);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}
.feature-item .icon {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
}
.feature-item h3 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}
.feature-item p {
    font-size: 1rem;
    color: var(--color-text-medium);
}

/* === SOBRE NÓS === */
.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
.history-text {
    max-width: 800px; 
    margin: 0 auto 4rem auto; 
    text-align: justify; 
    color: var(--color-text-medium);
}
.history-text p {
     margin-bottom: 1.5rem;
}
#sobre .card h3 {
     color: var(--color-accent);
}
#sobre .card ul {
    list-style: none;
    padding: 0; 
    color: var(--color-text-medium);
}
 #sobre .card li {
    margin-bottom: 0.5rem;
}


/* === TESTIMONIALS CAROUSEL === */
.testimonial-swiper {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}
.testimonial-swiper .swiper-slide {
    padding: 2.5rem;
    background-color: var(--color-background-light);
    border: 1px solid #EAEAEA;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.testimonial-swiper .stars {
    color: #FFC107; 
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}
.testimonial-swiper .testimonial-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-text-dark);
    margin-bottom: 2rem;
    max-width: 90%;
}
.testimonial-swiper .client-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--color-text-dark);
}
.testimonial-swiper .google-verified {
    font-size: 0.9rem;
    color: var(--color-text-medium);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.testimonial-swiper .google-verified i {
    color: #4285F4;
}
.testimonial-swiper .swiper-button-next,
.testimonial-swiper .swiper-button-prev {
    color: var(--color-accent);
}
.testimonial-swiper .swiper-pagination-bullet-active {
    background-color: var(--color-accent);
}

/* === PÁGINA DE ARTIGO DO BLOG === */
.post-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-background-light);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid #EAEAEA;
    color: var(--color-text-medium);
}
.post-content-wrapper .section-title {
    text-align: left;
    margin-bottom: 2rem;
}
.post-image {
    width: 100%;
    height: 300px;
    background-color: #f0f0f0;
    margin-bottom: 2rem;
    border-radius: 5px;
    border: 1px solid #EAEAEA;
    overflow: hidden;
}
.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.post-text {
    text-align: justify;
    color: var(--color-text-dark);
}
.post-text p, .post-text ul, .post-text li {
    margin-bottom: 1.5rem;
}
.post-text ul {
    padding-left: 2rem;
}
.back-to-blog-btn {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--color-accent);
    text-decoration: none;
    font-weight: bold;
    font-family: var(--font-body);
}

/* === CONTATO === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}
.contact-info, .contact-form-wrapper {
    background-color: var(--color-background-light);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid #EAEAEA;
}
.contact-info h3, .contact-form-wrapper h3 {
    margin-bottom: 2rem;
    text-align: left;
}
.contact-info p {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.1rem;
}
.contact-info i {
    color: var(--color-accent);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
    margin-top: 5px;
}
.contact-info .whatsapp-link {
    color: var(--color-text-dark); 
    text-decoration: none; 
    display: inline-flex; 
    align-items: center;
}
.contact-info .whatsapp-link .fab.fa-whatsapp {
    color: #25D366; 
    margin-left: 8px; 
    font-size: 1.4rem;
}
.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background-color: #25D366;
    color: #FFFFFF;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    transition: all var(--transition-speed) ease;
    border: 2px solid #25D366;
    font-size: 1.1rem;
    width: 100%;
}
.whatsapp-button:hover {
    background-color: #128C7E;
    border-color: #128C7E;
}
.whatsapp-button i {
    margin-right: 0.5rem;
}
.map-container {
    margin-top: 4rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #EAEAEA;
}
.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

.map-placeholder {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #EAEAEA;
    height: 450px;
    background-color: #f0f0f0;
}
.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.map-placeholder:hover img {
    transform: scale(1.03);
}
.map-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    transition: background-color var(--transition-speed);
}
.map-placeholder:hover::after {
    background: rgba(0,0,0,0.4);
}
.load-map-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 1rem 2rem;
    background-color: var(--color-accent);
    color: var(--color-background-light);
    border: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color var(--transition-speed);
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    white-space: nowrap;
}
.load-map-btn:hover {
    background-color: var(--color-accent-hover);
}

/* === POLÍTICA DE PRIVACIDADE === */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-background-light);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid #EAEAEA;
    color: var(--color-text-medium);
    text-align: justify;
}
.privacy-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: var(--color-text-dark);
}
.privacy-content p, .privacy-content ul {
    color: var(--color-text-dark);
    margin-bottom: 1rem;
}
.privacy-content .last-updated {
    margin-top: 2rem; 
    text-align: right;
}

/* === FOOTER === */
.footer {
    background-color: var(--color-text-dark);
    color: var(--color-text-medium);
    text-align: center;
    padding: 3rem 0;
}
.footer-links {
    margin-bottom: 1.5rem;
}
.footer-links a {
    color: var(--color-text-medium);
    text-decoration: none;
    margin: 0 1rem;
    transition: color var(--transition-speed) ease;
    cursor: pointer;
}
.footer-links a:hover {
    color: var(--color-accent);
}
.footer p {
    color: #aaa;
}

/* === COOKIE BANNER === */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: rgba(33, 37, 41, 0.95);
    color: #f0f0f0;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    z-index: 1000;
    transition: bottom 0.5s ease-in-out;
    flex-wrap: wrap;
    text-align: center;
}
.cookie-banner.visible {
    bottom: 0;
}
.cookie-banner p {
    margin: 0;
    flex-grow: 1;
    max-width: 800px;
}
.cookie-banner a {
    color: var(--color-accent);
    text-decoration: underline;
}
.cookie-banner .btn-accept {
    background-color: var(--color-accent);
    color: var(--color-background-light);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 700;
    transition: background-color var(--transition-speed);
    white-space: nowrap;
}
.cookie-banner .btn-accept:hover {
    background-color: var(--color-accent-hover);
}
body.dark-mode .cookie-banner {
    background-color: rgba(44, 44, 44, 0.98);
}

/* === WHATSAPP FLUTUANTE === */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: #FFFFFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    z-index: 998;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}

/* === BACK TO TOP BUTTON === */
.back-to-top {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background-color: var(--color-accent);
    color: var(--color-background-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s, transform 0.4s;
    transform: translateY(20px);
    z-index: 998;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* === RESPONSIVIDADE === */
@media (min-width: 992px) {
    .product-grid, .segment-grid, .blog-grid, .testimonial-grid, .about-content {
        grid-template-columns: repeat(3, 1fr);
    }
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text {
        order: 1;
    }
    .hero-image {
        order: 2;
    }
    .hero-text .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        justify-content: center;
        position: relative;
    }
    #rotating-text-container {
       flex-grow: 0;
       margin-right: 0;
       width: calc(100% - 100px);
    }
    .top-bar a {
        padding-left: 1rem;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(5px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease-in-out;
        z-index: 1001;
    }
    .nav-menu.mobile-active {
        right: 0;
    }
    .nav-menu ul {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .nav-menu ul a {
        font-size: 1.5rem;
    }
    .mobile-menu-icon {
        display: block;
    }
    .page-section, .home-features, .home-products, .home-segments, .home-testimonials, .home-blog {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    .card { 
        padding: 1rem;
    }
    .card .product-card-image-wrapper,
    .card .segment-card-image-wrapper,
    .card .blog-card-image-wrapper { 
        height: 140px;
    }
    .product-cta-button { 
        padding: 0.7rem 1rem; 
        font-size: 1rem; 
    }
}

@media (max-width: 480px) {
    .hero-section { 
        min-height: calc(60vh - 90px);
        padding-top: 2rem; 
        padding-bottom: 2rem; 
    }
    .hero-text .hero-title { 
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }
    .hero-text .hero-description { 
        font-size: 1rem; 
        max-width: 100%; 
    }
}