/* CSS Variables & Reset */
:root {
    --primary: #09854A;
    --primary-hover: #076d3c;
    --secondary: #F3951A;
    --dark: #1A1A1A;
    --gray-text: #3E4042;
    --light-bg: #F4F6F5;
    --white: #FFFFFF;
    --border-color: #E0E0E0;

    --font-main: 'Montserrat', sans-serif;

    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 32px;
    --spacing-lg: 64px;
    --spacing-xl: 96px;

    --border-radius: 12px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--gray-text);
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Typography */
h1,
h2,
h3,
h4,
h5 {
    color: var(--dark);
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(9, 133, 74, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(9, 133, 74, 0.4);
}

.btn-orange {
    background-color: #F3951A;
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(243, 149, 26, 0.3);
}

.btn-orange:hover {
    background-color: #D58317;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(243, 149, 26, 0.4);
}

.btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--dark);
}

.btn-text {
    color: var(--white);
    background: transparent;
    padding: 14px 20px;
}

.btn-text:hover {
    color: var(--primary);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background-color: #f9f9f9;
    color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.full-width {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--spacing-md) 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
}

.header.scrolled {
    background: rgba(26, 26, 26, 0.95);
    padding: 5px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.header.scrolled .logo-img {
    height: 30px;
    padding: 3px 8px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 50px;
    width: auto;
    background-color: #fff;
    /* Ensure contrast for the green/orange logo */
    padding: 6px 12px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.unit-name {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.4);
    padding-left: 15px;
    height: 34px;
    display: flex;
    align-items: center;
}

.nav {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav a:not(.btn):hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background-image: url('assets/hero_generated.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    padding: 120px 0 60px 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(26, 26, 26, 0.4) 100%);
    z-index: 1;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-form {
    flex: 0 0 450px;
}

.hero-form .contact-form-card {
    margin: 0;
}

.hero-tag {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 4.2rem;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    line-height: 1.1;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-md);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.hero-buttons .btn-text {
    padding-left: 0;
    font-size: 1.15rem;
}

/* Intro Section */
.intro {
    padding: var(--spacing-xl) 0 var(--spacing-lg) 0;
    background-color: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.intro-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.intro-image img {
    border-radius: var(--border-radius);
    transition: transform 0.5s ease;
}

.intro-image:hover img {
    transform: scale(1.03);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary);
    color: var(--white);
    padding: 35px 15px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(247, 147, 29, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 140px;
    width: 100%;
}

.experience-badge .number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.8;
}

.intro-text h3 {
    margin-bottom: var(--spacing-sm);
}

.intro-text p {
    margin-bottom: var(--spacing-sm);
    color: #555;
    font-size: 1.05rem;
}

.intro-list {
    margin-top: var(--spacing-md);
}

.intro-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 500;
    color: var(--dark);
}

.intro-list i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* Stats Highlight Section */
.stats-highlight {
    padding: 20px 0 100px 0;
    margin-top: -30px;
    /* Overlap slightly with intro */
    position: relative;
    z-index: 5;
}

.stats-bar {
    background-color: #FFFDF8;
    /* Creamy white background similar to image */
    border-radius: 100px;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--primary);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    position: relative;
    padding: 0 20px;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.05);
}

.stat-badge {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 2px;
}

.stat-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0c1c38;
    /* Dark navy for contrast, or I can use Green */
    color: var(--primary);
    line-height: 1;
}

.stat-description {
    font-size: 0.85rem;
    color: #555;
    font-weight: 600;
    line-height: 1.2;
    max-width: 150px;
}

@media (max-width: 1024px) {
    .stats-bar {
        border-radius: 30px;
        flex-wrap: wrap;
        padding: 40px;
        gap: 30px;
    }

    .stat-item {
        flex: 0 0 calc(50% - 15px);
        padding: 0;
    }

    .stat-item:after {
        display: none;
    }
}

@media (max-width: 600px) {
    .stat-item {
        flex: 0 0 100%;
        text-align: center;
    }

    .stat-content {
        justify-content: center;
    }

    .stats-bar {
        border-radius: 20px;
        margin: 0 10px;
    }
}

/* Differentials */
.differenciais {
    padding: var(--spacing-xl) 0 var(--spacing-xl) 0;
    background-color: var(--primary);
    color: var(--white);
}

.differenciais .section-title,
.differenciais .section-subtitle {
    color: var(--white);
}

.differenciais .section-subtitle {
    opacity: 0.9;
}

.differenciais .section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    /* Wider generic column */
    gap: 40px 60px;
    /* Vertical gap, Horizontal gap */
}

.benefit-card {
    background: transparent;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
    border: none;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: none;
    border-bottom: none;
}

.icon-box {
    width: 70px;
    height: 70px;
    background-color: var(--white);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    color: var(--primary);
    font-size: 1.8rem;
    flex-shrink: 0;
    transition: all 0.3s ease;

    /* Geometric skew effect */
    transform: skewX(-15deg);
    box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover .icon-box {
    background-color: var(--white);
    color: var(--primary-hover);
    /* Darker green for hover */
    transform: skewX(-15deg) scale(1.05);
}

/* Un-skew the icon itself so it looks straight */
.icon-box i {
    transform: skewX(15deg);
}

.benefit-text {
    flex: 1;
}

.benefit-card h4 {
    margin-bottom: 8px;
    font-size: 1.4rem;
    color: var(--white);
    font-weight: 700;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .benefit-card {
        align-items: flex-start;
    }
}

.differenciais .btn-white {
    background-color: var(--white);
    color: var(--primary);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.differenciais .btn-white:hover {
    background-color: #f9f9f9;
    color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Lifestyle / Gallery */
.lifestyle {
    padding: var(--spacing-lg) 0 120px 0;
}

.lifestyle-content {
    text-align: center;
}

.lifestyle-content p {
    max-width: 600px;
    margin: 0 auto var(--spacing-lg) auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 350px;
    width: 100%;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0.8;
}

.gallery-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    z-index: 2;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(-5px);
}

/* Contact Section */
/* CTA Section */
.cta-section {
    padding: 150px 0;
    background-image: url('assets/hero_generated.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.cta-section .overlay {
    background: linear-gradient(135deg, rgba(9, 133, 74, 0.75) 0%, rgba(26, 26, 26, 0.85) 100%);
    backdrop-filter: blur(3px);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-content h3 {
    color: var(--white);
    font-size: 3.2rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .cta-content h3 {
        font-size: 2.2rem;
        white-space: normal;
    }
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 400;
}

.cta-stats {
    margin-bottom: 10px;
}

.cta-stats span {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
    opacity: 0.95;
}

.cta-button .btn {
    padding: 20px 60px;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: none;
}

.cta-button .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--dark);
    color: var(--white);
}

/* Pattern overlay for contact info */
.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 90% 10%, rgba(9, 133, 74, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: left;
}

.info-item {
    display: flex;
    gap: 20px;
}

.info-item i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-top: 5px;
}

.info-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--white);
}

.info-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-social-links {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.footer-social-links a {
    width: auto;
    height: auto;
    border-radius: 0;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    border: none;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.contact-form-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    color: var(--dark);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.contact-form-card h4 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--dark);
}

input,
select,
textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(247, 147, 29, 0.1);
}

/* Footer */
.footer {
    background-color: #111;
    color: #888;
    padding: 40px 0;
    border-top: 1px solid #222;
    text-align: center;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    background-color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 10px;
}

.footer-brand span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 900px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }

    .logo {
        justify-content: center;
        width: 100%;
    }

    .logo-img {
        height: 35px;
        padding: 4px 10px;
    }



    /* Hide entire nav (links + button) on mobile */
    .nav {
        display: none;
    }

    /* Hide secondary hero button on mobile */
    .hero-buttons .btn-text {
        display: none;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .intro-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-card {
        padding: 30px 20px;
    }

    .header {
        position: relative;
        background: #1a1a1a;
        padding: 20px 0;
    }

    .hero {
        padding-top: 30px;
    }

    .hero-container {
        flex-direction: column-reverse;
        gap: 40px;
        text-align: center;
        padding-top: 10px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-form {
        flex: 1;
        width: 100%;
        max-width: 500px;
        text-align: left;
    }

    .contact-form-card h4 {
        text-align: left;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.developer-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.developer-link:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background-color: var(--light-bg);
}

.testimonials .section-header {
    text-align: center;
    margin-bottom: 80px;
    /* Increased spacing */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}


.testimonials-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.testimonials-track-container {
    overflow: hidden;
    width: 100%;
}

.testimonials-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease-in-out;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 14px);
    /* Show 3 items minus gap */
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    height: 100%;
    /* Ensure uniform height */
}

.stars {
    color: #FFD700;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.testimonial-text {
    flex: 1;
    font-size: 0.95rem;
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.author-info strong {
    display: block;
    color: var(--dark);
    font-size: 1rem;
}

.author-info span {
    font-size: 0.85rem;
    color: #888;
}

.nav-btn {
    background: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: var(--primary);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
}

.nav-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.prev-btn {
    left: -50px;
}

.next-btn {
    right: -50px;
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background-color: var(--white);
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    /* Increased spacing */
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 0;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark);
    font-family: inherit;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    transition: transform 0.3s;
    color: var(--primary);
}

.faq-question.active i {
    transform: rotate(45deg);
    /* Turn + to x */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.answer-content {
    padding-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

/* Responsive adjustments for new sections */
@media (max-width: 900px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 10px);
        /* 2 items on tablet */
    }

    .cta-content h3 {
        font-size: 2.5rem;
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .testimonial-card {
        flex: 0 0 100%;
        /* 1 item on mobile */
    }

    .cta-content h3 {
        font-size: 2rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .nav-btn {
        position: relative;
        left: auto;
        right: auto;
        margin: 0 10px;
    }

    .testimonials-wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }

    .testimonials-wrapper .nav-btn {
        order: 2;
        margin-top: 20px;
    }

    .testimonials-track-container {
        order: 1;
    }

    /* Increase gap between FAQ and Lifestyle on mobile */
    .faq-section {
        padding-bottom: 80px;
    }

    .lifestyle {
        padding-top: 10px;
    }

    .intro-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
        justify-items: center;
    }

    .gallery-item {
        max-width: 500px;
        height: 300px;
        /* Reduzindo levemente a altura no mobile */
    }
}