/* 
   Evoluir Home Care Landing Page CSS
   Author: Antigravity
   Design Style: Premium, Editorial, High-Conversion
*/

/* 1. Imports & Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,700;1,9..40,400&display=swap');

/* 2. Custom Properties (Design System) */
:root {
    --color-green-primary: #32B474;
    --color-green-hover: #2ba065;
    --color-green-dark: #1A7A4A;
    --color-gold-accent: #FCA852;
    --color-white: #FFFFFF;
    --color-gray-bg: #F7F8FA;
    --color-gray-text: #3D3D3D;
    --color-gray-muted: #6B7280;
    
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'DM Sans', sans-serif;
    
    --gradient-primary: linear-gradient(90deg, #32B474 0%, #FCA852 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.85) 100%);
    --gradient-dark-section: linear-gradient(135deg, #1A7A4A 0%, #115231 100%);
    --gradient-cta: linear-gradient(135deg, #32B474 0%, #1A7A4A 100%);
    --gradient-highlight-green: linear-gradient(90deg, #32B474 0%, #1A7A4A 100%);
    --gradient-highlight-gold: linear-gradient(90deg, #FCA852 0%, #FD9633 100%);
    
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.04);
    --shadow-medium: 0 16px 40px rgba(0, 0, 0, 0.08);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.03);
    --shadow-hover: 0 20px 40px rgba(50, 180, 116, 0.15);
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 3. Base Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--color-gray-text);
    background-color: var(--color-white);
    overflow-x: hidden;
}

/* Typography Helper Classes */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--color-gray-text);
    line-height: 1.15;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* 4. Layout & Spacing */
.section {
    padding: 100px 5%;
    position: relative;
}

@media (max-width: 768px) {
    .section {
        padding: 60px 6%;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Design Tokens for Text Highlights */
.eyebrow {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-green-primary);
    margin-bottom: 15px;
    display: block;
}

.eyebrow.accent {
    color: var(--color-gold-accent);
}

.h2-title {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: -0.01em;
}

@media (max-width: 768px) {
    .h2-title {
        font-size: 2.2rem;
    }
}

.highlight-text {
    font-weight: 700;
    display: inline;
}

/* Light Background Sections (Green Gradient) */
.hero-section .highlight-text,
.about-section .highlight-text,
.equipments-section .highlight-text,
.how-it-works-section .highlight-text,
.faq-section .highlight-text,
.contact-section .highlight-text {
    background: var(--gradient-highlight-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Dark Green Background Sections (Gold/Yellow Gradient) */
.services-section .highlight-text,
.testimonials-section .highlight-text,
.cta-intermediate-section .highlight-text {
    background: var(--gradient-highlight-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lead-para {
    font-size: 1.1rem;
    color: var(--color-gray-muted);
    margin-bottom: 30px;
    max-width: 600px;
}

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 10px 10px 28px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    gap: 16px;
    position: relative;
    text-decoration: none;
}

.btn::after {
    content: '↗';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 700;
    transition: transform var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast);
    flex-shrink: 0;
}

.btn-primary {
    background: var(--gradient-cta);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(50, 180, 116, 0.2);
}

.btn-primary::after {
    background-color: var(--color-white);
    color: var(--color-green-dark);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-primary:hover::after {
    transform: rotate(45deg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-green-dark);
    border: 2px solid var(--color-green-dark);
    padding-top: 8px;
    padding-bottom: 8px;
}

.btn-secondary::after {
    background-color: var(--color-green-dark);
    color: var(--color-white);
}

.btn-secondary:hover {
    background-color: rgba(26, 122, 74, 0.05);
    transform: translateY(-2px);
}

.btn-secondary:hover::after {
    transform: rotate(45deg);
}

.btn-white {
    background-color: var(--color-white);
    color: var(--color-green-dark);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.btn-white::after {
    background-color: var(--color-green-dark);
    color: var(--color-white);
}

.btn-white:hover {
    background-color: var(--color-gray-bg);
    transform: translateY(-2px);
}

.btn-white:hover::after {
    transform: rotate(45deg);
}

/* Small Button Variant */
.btn-sm {
    padding: 6px 6px 6px 18px !important;
    font-size: 0.88rem !important;
    gap: 10px !important;
}

.btn-sm::after {
    width: 26px !important;
    height: 26px !important;
    font-size: 0.9rem !important;
}

/* 5. Sticky Navigation Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all var(--transition-smooth);
}

.header.sticky {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    padding: 12px 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    transition: all var(--transition-smooth);
}

.header.sticky .container {
    padding: 10px 24px;
}

.logo-container {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 40px;
}

.logo-img {
    height: 48px;
    width: auto;
    transition: height var(--transition-smooth);
}

.header.sticky .logo-img {
    height: 38px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-gray-text);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-green-primary);
    transition: width var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-green-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.header-btn {
    display: flex;
}

.header-btn.mobile-only {
    display: none;
}

/* Mobile Hamburguer Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--color-gray-text);
    transition: all var(--transition-fast);
    transform-origin: center;
}

@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--color-white);
        box-shadow: -10px 0 30px rgba(0,0,0,0.05);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px;
        gap: 30px;
        transition: right var(--transition-smooth);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .header-btn.desktop-only {
        display: none;
    }
    
    .header-btn.mobile-only {
        display: flex;
        margin-top: 20px;
        width: 100%;
    }
    
    .header-btn.mobile-only .btn {
        width: 100%;
    }
}

/* Hamburger active states */
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
    width: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* 6. Section 1: Hero */
.hero-section {
    position: relative;
    width: 100%;
    min-height: auto;
    background-color: #ffffff;
    background-image: url('images/hero-desktop.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Wide screens: usa versão wide */
@media (min-width: 1440px) {
    .hero-section {
        background-image: url('images/hero-wide.png');
    }
}

/* Mobile: usa versão mobile */
@media (max-width: 768px) {
    .hero-section {
        background-image: url('images/hero-mobile.png');
        background-position: top center;
        background-size: 100% auto;
        min-height: 100svh;
    }
}

/* Overlay gradiente: branco denso à esquerda, transparente à direita */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(
        100deg,
        rgba(255, 255, 255, 0.93) 0%,
        rgba(255, 255, 255, 0.80) 40%,
        rgba(255, 255, 255, 0.15) 65%,
        rgba(255, 255, 255, 0.00) 100%
    );
}

@media (max-width: 768px) {
    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.0) 0%,
            rgba(255, 255, 255, 0.0) 30%,
            rgba(255, 255, 255, 0.95) 55%,
            rgba(255, 255, 255, 1.0) 100%
        );
    }
}

/* Conteúdo sobreposto */
.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: auto;
    display: flex;
    align-items: center;
    padding-top: 180px;
    padding-bottom: 140px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .hero-content-wrapper {
        min-height: 100svh;
        padding-top: 65vw;
        padding-bottom: 70px;
    }
}

.hero-content {
    max-width: 560px;
    animation: fadeIn 0.8s ease-out;
}

@media (max-width: 768px) {
    .hero-content {
        max-width: 100%;
        text-align: center;
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--color-gray-text);
    margin-bottom: 25px;
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-gray-muted);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.hero-credentials {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    color: var(--color-gray-muted);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .hero-credentials {
        justify-content: center;
        gap: 15px;
    }
}

.hero-credentials span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-credentials span::before {
    content: '✔';
    color: var(--color-green-primary);
    font-weight: bold;
}






/* 7. Section 2: Sobre */
.about-section {
    background-color: var(--color-gray-bg);
}

.about-image-wrapper {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    height: auto;
    box-shadow: var(--shadow-medium);
}

@media (max-width: 992px) {
    .about-image-wrapper {
        height: auto;
        order: 2; /* Image below text on mobile */
    }
    .about-content {
        order: 1;
    }
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
}

.value-pills {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.value-pill {
    background-color: rgba(50, 180, 116, 0.08);
    color: var(--color-green-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.value-pill::before {
    content: '●';
    font-size: 0.6rem;
    color: var(--color-green-primary);
}

.about-para {
    font-size: 1.05rem;
    color: var(--color-gray-text);
    margin-bottom: 20px;
}


/* 8. Section 3: Serviços (Dark Section) */
.services-section {
    background: var(--gradient-dark-section);
    color: var(--color-white);
    border-radius: 48px;
    margin: 0 24px;
    padding: 100px 6%;
}

@media (max-width: 768px) {
    .services-section {
        margin: 0 12px;
        padding: 60px 4%;
        border-radius: 32px;
    }
}

.services-header {
    text-align: center;
    margin-bottom: 90px;
}

.services-header .h2-title {
    color: var(--color-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
    margin-top: 50px;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

.service-card {
    background-color: var(--color-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    cursor: pointer;
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

@media (max-width: 576px) {
    .service-card {
        border-radius: 16px;
    }
}

.service-card-img-wrapper {
    height: 200px;
    overflow: hidden;
    position: relative;
}

@media (max-width: 576px) {
    .service-card-img-wrapper {
        height: 150px;
    }
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.service-card-content {
    padding: 28px 24px 20px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

@media (max-width: 576px) {
    .service-card-content {
        padding: 20px 16px 16px 16px;
    }
}

.service-card-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-green-dark);
    margin-bottom: 12px;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

@media (max-width: 576px) {
    .service-card-title {
        font-size: 1.35rem;
    }
}

.service-card-desc {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-gray-muted);
    line-height: 1.65;
    flex-grow: 1;
    margin-bottom: 8px;
}

.service-card-footer {
    background-color: transparent;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--color-green-dark);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}

@media (max-width: 576px) {
    .service-card-footer {
        padding: 14px 16px;
    }
}

.service-card-link-text {
    opacity: 0.95;
    transition: color var(--transition-fast);
}

.service-card-arrow {
    color: var(--color-gold-accent);
    font-weight: bold;
    font-size: 1.15rem;
    transition: all var(--transition-fast);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card:hover .service-card-img {
    transform: scale(1.04);
}

.service-card:hover .service-card-footer {
    background-color: var(--color-green-primary);
    color: var(--color-white);
}

.service-card:hover .service-card-arrow {
    transform: translate(4px, -4px);
    color: var(--color-white);
}

.services-footer {
    text-align: center;
}

/* 9. Section 4: Equipamentos (Estilos Antigos Removidos) */

.carousel-control-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.carousel-control-btn.prev-btn {
    background: #E5E7EB;
    color: var(--color-gray-text);
}

.carousel-control-btn.prev-btn:hover {
    background: #D1D5DB;
    transform: translateX(-2px);
}

.carousel-control-btn.next-btn {
    background: var(--color-green-dark);
    color: var(--color-white);
}

.carousel-control-btn.next-btn:hover {
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.carousel-dots .carousel-dot.active {
    background-color: var(--color-green-dark);
    width: 24px;
    border-radius: 10px;
}

/* 9. Section 4: Equipamentos para Aluguel (Novo Layout Carrossel G.A. Hospitalar) */
.equipments-section {
    background-color: var(--color-gray-bg);
    overflow: hidden;
}

.equipments-intro-header {
    margin: 0 auto 50px auto;
    max-width: 800px;
    text-align: center;
}

.equipments-intro-header .h2-title {
    text-align: center;
}

.equipments-intro-header .lead-para {
    margin: 15px auto 0 auto;
    font-size: 1.15rem;
    color: var(--color-gray-muted);
    text-align: center;
    max-width: 700px;
}

.carousel-outer {
    position: relative;
    width: 100%;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    border-radius: 32px;
    box-shadow: var(--shadow-medium);
}

.carousel-track-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    background: var(--gradient-dark-section);
    color: var(--color-white);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    min-height: 480px;
}

.product-info-column {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.product-category-tag {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold-accent);
    margin-bottom: 10px;
}

.product-info-column h3 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--color-white);
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.2;
}

.product-tagline {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

.product-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 30px;
    line-height: 1.6;
}

.product-specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.spec-col {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
    font-weight: 600;
}

.spec-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-white);
}

.product-action-row {
    margin-top: 10px;
}

.product-image-column {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 480px;
    overflow: hidden;
    background-color: var(--color-white);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

/* Custom Navigation Buttons */
.carousel-outer .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: var(--color-white);
    color: var(--color-green-dark);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-fast);
}

.carousel-outer .carousel-btn:hover {
    background-color: var(--color-green-dark);
    color: var(--color-white);
    transform: translateY(-50%) scale(1.05);
}

.carousel-outer .carousel-btn-prev {
    left: -27px;
}

.carousel-outer .carousel-btn-next {
    right: -27px;
}

/* Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.carousel-dots .carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(26, 122, 74, 0.2);
    border: none;
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.carousel-dots .carousel-dot.active {
    background-color: var(--color-green-dark);
    width: 24px;
    border-radius: 10px;
}

@media (max-width: 992px) {
    .carousel-slide {
        display: flex;
        flex-direction: column;
        min-height: auto;
        overflow: hidden;
    }
    
    .product-info-column {
        padding: 30px 24px;
        width: 100%;
    }
    
    .product-image-column {
        order: -1;
        width: 100%;
        height: 280px;
        min-height: auto;
        padding: 0;
        margin: 0;
    }
    
    .product-img {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        object-fit: cover;
        max-height: none;
    }
    
    .product-action-row {
        width: 100%;
        margin-top: 15px;
    }
    
    .product-action-row .btn {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .product-specs-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        width: 100%;
    }
    
    .carousel-outer .carousel-btn {
        width: 44px;
        height: 44px;
    }
    
    .carousel-outer .carousel-btn-prev {
        left: -15px;
    }
    
    .carousel-outer .carousel-btn-next {
        right: -15px;
    }
}


/* 10. Section 5: Como Funciona */
.how-it-works-section {
    background-color: var(--color-gray-bg);
}

.steps-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.steps-header-left {
    text-align: left;
}

.steps-header-left .h2-title {
    margin: 0;
    text-align: left;
}

.steps-header-right {
    display: flex;
    align-items: center;
}

.steps-header-stat {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-green-dark);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .steps-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .steps-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.step-card {
    background-color: var(--color-white);
    padding: 36px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all var(--transition-smooth);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.step-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: rgba(50, 180, 116, 0.08); /* Primary green light background */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-green-primary);
    margin-bottom: 24px;
}

.step-card-icon svg {
    width: 24px;
    height: 24px;
}

.step-title {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111827; /* Near Black text */
}

.step-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-gray-muted);
}


/* 11. Section 6: Depoimentos (Dark Section) */
.testimonials-section {
    background: var(--gradient-dark-section);
    color: var(--color-white);
    border-radius: 48px;
    margin: 0 24px 80px 24px; /* Added 80px bottom margin for spacing */
    padding: 100px 6%;
    position: relative;
}

@media (max-width: 768px) {
    .testimonials-section {
        margin: 0 12px 50px 12px; /* Added 50px bottom margin for mobile */
        padding: 60px 4%;
        border-radius: 32px;
    }
}

/* Subtle background quotation marks */
.testimonials-section::before {
    content: '“';
    position: absolute;
    top: 20px;
    left: 40px;
    font-family: var(--font-display);
    font-size: 12rem;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
}

.testimonials-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.testimonials-header-left {
    text-align: left;
}

.testimonials-header-left .h2-title {
    color: var(--color-white);
    margin: 0;
    text-align: left;
}

.testimonials-controls {
    margin-top: 0 !important;
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
}

@media (max-width: 768px) {
    .testimonials-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .testimonials-controls {
        align-self: flex-start;
    }
}

.testimonials-carousel-panel {
    position: relative;
    overflow: visible;
    width: 100%;
    min-width: 0;
}

.testimonials-carousel-track {
    display: flex;
    gap: 24px;
    padding: 10px 20px 20px 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
}

.testimonials-carousel-track::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

/* White Clean Testimonial Cards from GMB reference */
.testimonial-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    flex: 0 0 310px; /* Fixed width */
    height: 290px; /* Fixed height */
    box-sizing: border-box;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.testimonial-google-icon {
    display: inline-flex;
    align-items: center;
}

.testimonial-rating {
    color: #F4B400; /* Google Gold Star Color */
    font-size: 1.05rem;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
}

.testimonial-text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #374151; /* Dark Gray text */
    height: 110px; /* Fixed height for text scroll */
    overflow-y: auto; /* Enable text scroll for long reviews */
    font-style: normal;
    text-align: left;
    padding-right: 6px;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.1) transparent;
}

.testimonial-text::-webkit-scrollbar {
    width: 4px;
}

.testimonial-text::-webkit-scrollbar-track {
    background: transparent;
}

.testimonial-text::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 4px;
}

.testimonial-author-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #f3f4f6;
    padding-top: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: none;
}

.testimonial-avatar-initial {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
}

.testimonial-author-name {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    color: #111827; /* Near Black */
}

.testimonial-author-location {
    font-size: 0.8rem;
    color: #6b7280; /* Muted gray location */
    margin-top: 1px;
}

.testimonials-badge {
    text-align: center;
    font-size: 0.95rem;
    color: var(--color-white);
}

.testimonials-badge a {
    color: var(--color-gold-accent);
    font-weight: 500;
    border-bottom: 1px dashed var(--color-gold-accent);
}

.testimonials-badge a:hover {
    color: var(--color-white);
    border-bottom-color: var(--color-white);
}


/* 12. Section 7: CTA Intermediário */
.cta-intermediate-section {
    background: var(--gradient-cta);
    color: var(--color-white);
    text-align: center;
    padding: 80px 5%;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content .h2-title {
    color: var(--color-white);
}

.cta-para {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 35px;
}

.cta-intermediate-section .btn {
    font-size: 1.1rem;
    padding: 16px 36px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}


/* 13. Section 8: FAQ Accordion */
.faq-section {
    background-color: var(--color-white);
}

.faq-grid-wrapper {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 60px;
    align-items: flex-start;
}

.faq-left-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: sticky;
    top: 100px;
}

.faq-left-col .h2-title {
    margin-bottom: 20px;
    text-align: left;
}

.faq-subtitle {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--color-gray-muted);
    margin-bottom: 28px;
}



.faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

@media (max-width: 992px) {
    .faq-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .faq-left-col {
        position: static;
    }
}

.faq-item {
    border: 1px solid rgba(0, 0, 0, 0.06);
    background-color: var(--color-gray-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: all var(--transition-fast);
}

.faq-item.active {
    border-color: var(--color-green-primary);
    background-color: var(--color-white);
    box-shadow: var(--shadow-medium);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-gray-text);
    text-align: left;
    cursor: pointer;
    outline: none;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-green-primary);
}

.faq-icon {
    position: relative;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-green-primary);
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: currentColor;
    transition: transform var(--transition-fast);
}

.faq-icon::before {
    width: 16px;
    height: 2px;
}

.faq-icon::after {
    width: 2px;
    height: 16px;
}

/* Open/close accordion animations */
.faq-item.active .faq-icon::after {
    transform: rotate(90deg) scaleY(0);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth);
}

.faq-answer-inner {
    padding: 0 30px 24px 30px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-gray-muted);
}


/* 14. Section 9: Localização e Contato */
/* 14. Section 9: Localização */
.location-section {
    background-color: var(--color-white);
    padding: 80px 5%;
}

.location-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}

.location-header-left {
    text-align: left;
}

.location-header-left .h2-title {
    margin: 0;
    text-align: left;
}

.location-header-right {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-gray-muted);
}

.location-pin-icon {
    font-size: 1.2rem;
}

.location-map-wrapper {
    width: 100%;
    height: 480px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    margin-bottom: 36px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-map-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-gray-bg);
    padding: 30px 40px;
    border-radius: 20px;
    gap: 30px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.location-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.location-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(50, 180, 116, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-green-primary);
    flex-shrink: 0;
}

.location-info-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.location-info-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-gray-muted);
    margin-bottom: 3px;
    font-weight: 500;
}

.location-info-val {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-gray-text);
    font-weight: 600;
    line-height: 1.4;
}

.location-info-action {
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .location-info-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        gap: 24px;
    }
    .location-info-action {
        width: 100%;
    }
    .location-info-action .btn {
        width: 100%;
        text-align: center;
    }
    .location-map-wrapper {
        height: 380px;
    }
}

@media (max-width: 600px) {
    .location-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .location-map-wrapper {
        height: 300px;
    }
}


/* 15. Footer */
.footer {
    background-color: #0c0c0c; /* Black background as requested */
    color: var(--color-white);
    padding: 60px 0 40px 0; /* Padding is handled by container */
}

.footer-top-centered {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.footer-logo-img {
    height: 54px;
    object-fit: contain;
}

.footer-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 20px 0;
}

.footer-content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin: 30px 0;
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Left-aligned as the reference image */
    text-align: left; /* Left-aligned as the reference image */
}

.footer-col-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.footer-col-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-col-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-col-link:hover {
    color: #25D366; /* WhatsApp color */
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between; /* Copyright left, WhatsApp icon right */
    align-items: center;
    margin-top: 20px;
}

.footer-copyright {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
}

.footer-social-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social-icon-btn:hover {
    background-color: #25D366; /* WhatsApp green */
    border-color: #25D366;
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(37, 211, 98, 0.25);
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 20px 30px 20px;
    }
    .footer-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-col {
        align-items: center;
        text-align: center;
    }
    .footer-bottom-row {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}


/* 16. Floating WhatsApp Button */
.whatsapp-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 32px;
    z-index: 999;
    transition: transform var(--transition-fast);
    animation: pulse 2s infinite;
}

.whatsapp-floating:hover {
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive Mobile Fixes */
@media (max-width: 768px) {
    .btn {
        width: 100% !important;
        box-sizing: border-box;
        justify-content: space-between;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .services-footer,
    .cta-content,
    .faq-left-col,
    .location-info-action {
        width: 100%;
    }

    /* Center carousel texts and navigation controls on mobile */
    .equipments-intro {
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }
    
    .equipments-intro .lead-para {
        margin-left: auto;
        margin-right: auto;
    }

    .equipments-intro .carousel-controls {
        justify-content: center;
        margin-top: 16px;
    }

    .testimonials-header-row {
        flex-direction: column;
        align-items: center !important;
        text-align: center;
        gap: 20px;
    }
    
    .testimonials-header-left {
        text-align: center !important;
    }
    
    .testimonials-header-left .h2-title {
        text-align: center !important;
    }

    .testimonials-controls {
        align-self: center !important;
        justify-content: center;
    }

    /* Adjust testimonial card width and padding for mobile centering */
    .testimonials-carousel-track {
        padding: 10px 16px 20px 16px !important;
    }

    .testimonial-card {
        flex: 0 0 280px !important;
    }

    /* Fix location section padding on mobile */
    .location-section {
        padding: 60px 6%;
    }
}

/* Assinatura do desenvolvedor */
.footer-dev-signature {
    background-color: #ffffff;
    border-top: 1px solid #e2e8f0;
    padding: 0.75rem 0;
    text-align: center;
}

.footer-dev-signature a {
    display: inline-block;
    opacity: 0.8;
    transition: opacity 0.25s ease;
}

.footer-dev-signature a:hover {
    opacity: 1;
}

.footer-dev-signature img {
    height: 22px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .footer-dev-signature img {
        height: 18px;
    }
}
