/* Global Styles */
:root {
    --primary-dark: #1a1a1a;
    --primary-brown: #3e2723;
    --accent-red: #d32f2f;
    --bg-light: #f9f9f9;
    --text-white: #ffffff;
    --text-gray: #b0bec5;
    --text-dark: #333333;
    --gold: #c5a968;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto Condensed', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
.btn-hero,
.btn-dark,
.btn-red,
.btn-red-rounded {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Navbar */
/* Navbar */
.navbar {
    display: flex;
    justify-content: flex-end;
    /* Align all items to the right */
    align-items: center;
    padding: 1rem 5%;
    background-color: rgba(26, 26, 26, 0.95);
    /* Reverted to dark background */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    gap: 20px;
    /* Ensure equal spacing between nav links block and contact button */
}

.hero-logo-img {
    max-width: 300px;
    /* Adjust size as needed */
    height: auto;
    margin-bottom: 20px;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links li a {
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: var(--accent-red);
}

.btn-contact {
    background-color: var(--accent-red);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hamburger {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero_bg.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding-top: 60px;
}

.hero.hero-revenda {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/revendahero.png') no-repeat center center/cover;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
}

.hero-logo i {
    font-size: 3rem;
    color: var(--accent-red);
}

.hero-logo h1 {
    font-size: 4rem;
    margin: 0;
    color: white;
    font-family: 'Satisfy', cursive;
    text-transform: none;
}

.hero-logo p {
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--gold);
}

.main-title {
    font-size: 3.5rem;
    margin-bottom: 10px;
    line-height: 1.1;
}

.sub-title {
    font-size: 1.5rem;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
}

.btn-hero {
    border: 1px solid white;
    padding: 12px 30px;
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s;
    display: inline-block;
}

.btn-hero:hover {
    background-color: white;
    color: black;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.stat-label {
    font-size: 1rem;
    color: #e0e0e0;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Brands Section */
.brands-section {
    padding: 30px 0 20px 0;
    /* Updated padding: top 30px (reduced), bottom 20px */
    background-color: #f9f9f9;
    text-align: center;
    /* Ensures content including header is centered */
    overflow: hidden;
}

/* Features Section */
.features {
    padding: 0;
    background-color: #eae6dd;
    text-align: center;
    position: relative;
}

.features-top-decoration {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-90%);
    /* Percentage based to scale with image height */
    z-index: 10;
    line-height: 0;
}

.features-top-decoration img {
    width: 100%;
    display: block;
}

.features-wrapper {
    padding: 25px 5%;
}

/* Global Content Constraint for Sections */
.features-grid,
.action-buttons-container,
.section-header,
.testimonial-header,
.club-levels,
.testimonial-grid,
.history-content,
.footer-content {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.section-subtitle {
    font-family: 'Dancing Script', cursive;
    color: var(--primary-brown);
    font-size: 1.2rem;
}

.section-title {
    font-size: 2.5rem;
    margin: 10px 0 20px;
    color: var(--primary-brown);
}

.separator {
    height: 2px;
    width: 60px;
    background-color: var(--gold);
    margin: 0 auto 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 20px 30px;
}

/* Carousel Styles */
#carousel-title {
    margin-bottom: 12px;
}

.carousel-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 10px;
    /* Optional padding to avoid cutting off shadows/hover effects */
}

/* Navigation Controls */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    /* Space between title/controls and content */
}

.carousel-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary-brown);
    transition: color 0.3s;
}

.carousel-btn:hover {
    color: var(--accent-red);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: var(--accent-red);
}

.marquee-track {
    display: flex;
    gap: 80px;
    width: max-content;
    animation: scroll 30s linear infinite;
    /* Adjusted speed for logos */
    align-items: center;
}

.marquee-track img {
    height: 160px;
    /* Increased height for visibility (100% bigger) */
    width: auto;
    object-fit: contain;
    /* Removed grayscale filter */
    opacity: 1;
    /* Full opacity */
    transition: all 0.3s;
    margin: 0 40px;
    /* Increased spacing */
}

.marquee-track img:hover {
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-20%);
        /* 1/5 since we have 5 sets now */
    }
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 30px;
    text-align: right;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(-5px);
}

@keyframes pulse-gold {
    0% {
        color: var(--gold);
        transform: scale(1);
    }

    50% {
        color: #e6c87f;
        transform: scale(1.1);
    }

    100% {
        color: var(--gold);
        transform: scale(1);
    }
}

.feature-item:hover .feature-icon i {
    animation: pulse-gold 1s infinite;
}

.feature-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.8rem;
    color: #666;
    max-width: 250px;
}

.feature-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-left: 15px;
    width: 50px;
    /* Fixed width for alignment stability */
    text-align: center;
    display: flex;
    /* Ensure center alignment of the icon itself */
    justify-content: center;
}

.feature-icon-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.feature-center-image img {
    max-width: 70%;
    display: block;
    margin: 0 auto;
    height: auto;
}

.feature-center-image img.large-cup {
    max-width: 56%;
    width: 56%;
    margin: 0 auto;
}

.features-gallery-grid {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.gallery-item:first-child {
    grid-row: 1 / span 2;
}

/* Action Buttons */
.action-buttons-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
    padding-top: 0;
    grid-column: 1 / -1;
    border-top: none;
}

.left-buttons {
    grid-column: 2;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.action-buttons-container .btn-red {
    grid-column: 3;
    justify-self: end;
}



.btn-dark {
    background-color: #333;
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    font-size: 0.9rem;
    min-width: 180px;
}

.btn-red {
    background-color: #8b0000;
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    font-size: 0.9rem;
    min-width: 180px;
}

/* Testimonials */
.testimonials {
    padding: 80px 5%;
    background-color: white;
    text-align: center;
}

.club-levels {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.club-card {
    background: white;
    padding: 20px;
    padding-top: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    width: 300px;
    text-align: center;
    position: relative;
    overflow: visible;
    margin-top: 40px;
}

.icon-container {
    height: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.icon-container i {
    font-size: 2.5rem;
    color: var(--gold);
}

.icon-group {
    display: flex;
    gap: 15px;
}

.icon-group i {
    font-size: 1.8rem;
    color: var(--gold);
}

/* Specific class for small circle container (like Fairy Tail) to match mini-circle */
.icon-container.small-circle {
    width: 50px;
    height: 50px;
    top: -25px;
    /* Half of height to center on line */
}

/* Positioning adjustments for half-in/half-out */
.icon-container.founder-container {
    top: -30px;
    /* Half of 60px height */
}

.icon-container.fairy-container {
    top: -27.5px;
    /* Half of 55px height */
}

.icon-container.no-bg {
    background-color: transparent;
    box-shadow: none;
    width: auto;
    height: auto;
    /* top is handled by specific container classes now */
}

.founder-icon {
    height: 60px;
    /* Adjusted to 60px as requested */
    width: auto;
    object-fit: contain;
    /* Removed shadow as requested */
}

.icon-container.multi-icon {
    background-color: transparent;
    box-shadow: none;
    width: auto;
    /* Let it expand */
    gap: 10px;
    border-radius: 0;
}

.mini-circle {
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.mini-circle i {
    font-size: 1.2rem;
    color: var(--gold);
}

.fairy-tail-icon {
    height: 55px;
    /* Adjusted to 55px as requested */
    width: auto;
    object-fit: contain;
}

.testimonial-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.highlight-red {
    color: #8b0000;
}

.testimonial-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.testimonial-card {
    background: white;
    border: 1px solid #eee;
    padding: 30px;
    width: 300px;
    text-align: left;
    position: relative;
    border-radius: 8px;
}

.stars {
    color: #ffd700;
    margin-bottom: 15px;
}

.quote-icon {
    font-size: 4rem;
    color: #ffebee;
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: serif;
}

.user-info {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.user-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

/* Location */
.location {
    padding: 80px 5%;
    background-color: white;
}

.location-header {
    text-align: center;
    margin-bottom: 40px;
}

.location-header h2 {
    font-size: 2.5rem;
}

.location-container {
    display: flex;
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.location-info-card {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 15px;
}

/* New Layout for Info Card Internal Structure */
.info-body-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.info-text-content {
    flex: 1;
}

.info-image-internal {
    flex: 1;
    max-width: 45%;
    /* Adjust as needed for distribution */
}

.info-image-internal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    aspect-ratio: 4/3;
}

/* Mobile Responsiveness for Location Internal Grid */
@media (max-width: 768px) {
    .info-body-grid {
        flex-direction: column-reverse;
        /* Image below text or above? User example suggests side by side, but on mobile column is better. Let's stack. */
    }

    .info-image-internal {
        max-width: 100%;
        width: 100%;
        margin-bottom: 20px;
    }
}

.red-icon {
    color: #8b0000;
    font-size: 1.5rem;
}

.hours-section {
    margin-bottom: 30px;
}

.hours-section h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.day-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.contact-methods {
    margin-bottom: 30px;
}

.phone-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
}

.phone-box i {
    font-size: 1.5rem;
    color: #8b0000;
}

.location-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-red-rounded {
    background-color: #8b0000;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.btn-red-rounded:hover {
    background-color: #660000;
}

.btn-icon-only {
    width: 40px;
    height: 40px;
    background-color: #8b0000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-image {
    flex: 1;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Promo Banners */
.promo-banners {
    display: flex;
    width: 100%;
}

.banner-item {
    flex: 1;
    height: 300px;
}

.banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
.main-footer {
    background-color: #0c1219;
    color: #8a99a8;
    padding: 60px 5% 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo img {
    height: 80px;
    /* Increased by 100% from 40px */
    width: auto;
    /* Ensure aspect ratio is maintained */
    margin-bottom: 20px;
}

.footer-links {
    flex: 1;
    min-width: 150px;
}

.footer-links h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: white;
}

.footer-info h4 {
    color: white;
    margin-bottom: 20px;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    transition: transform 0.3s;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

/* History Section */
.history {
    padding: 80px 5%;
    background-color: var(--bg-light);
    text-align: center;
}



.history-text {
    margin-bottom: 40px;
    color: #555;
    font-size: 1.1rem;
}

.history-text p {
    margin-bottom: 20px;
}

.history-images {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.history-image-placeholder {
    width: 600px;
    height: 400px;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #aaa;
    color: #666;
    font-weight: bold;
    max-width: 100%;
    transition: transform 0.3s ease;
}

.history-image-placeholder:hover {
    transform: scale(1.02);
}

/* Button Animations */
.btn-dark,
.btn-red,
.btn-red-rounded,
.btn-hero {
    transition: all 0.3s ease;
}

.btn-dark:hover,
.btn-red:hover,
.btn-red-rounded:hover,
.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}


/* Utility */
.highlight-red {
    color: var(--accent-red);
    font-weight: bold;
}

.btn-red-rounded {
    background-color: var(--accent-red);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-red-rounded:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Impact Section */
.impact-section {
    padding: 60px 20px;
    background-color: white;
    text-align: center;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.impact-card {
    background: #fdfdfd;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    border: 1px solid #eee;
}

.impact-card:hover {
    transform: translateY(-5px);
}

.impact-icon {
    font-size: 2.5rem;
    color: var(--accent-red);
    margin-bottom: 20px;
}

.impact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-brown);
}

/* Social Proof */
.social-proof {
    padding: 60px 20px;
    background-color: #fff8f0;
}

.social-proof-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.social-image img {
    max-width: 500px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.social-text {
    flex: 1;
    max-width: 500px;
    min-width: 300px;
}

.testimonial-box {
    background: white;
    padding: 30px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-top: 30px;
}

.quote-icon {
    font-size: 4rem;
    color: #e6c87f;
    position: absolute;
    top: -20px;
    left: 20px;
    opacity: 0.5;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.user-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* Partnership Inclusions */
.partnership-inclusions {
    padding: 80px 20px;
    background-color: white;
    text-align: center;
}

.inclusion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.inclusion-card {
    text-align: center;
    padding: 20px;
}

/* Inclusion Image Container - Ensures consistent alignment */
.inclusion-image {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.inclusion-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s;
}

.inclusion-coffee {
    height: 180px !important;
    /* Increased by 50% from 125px */
    width: auto !important;
    margin-top: 0 !important;
}

.inclusion-card:hover .inclusion-image img {
    transform: scale(1.03);
}

/* Differentials */
.differentials {
    padding: 80px 20px;
    background-color: #f4f4f4;
}

.differentials-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap-reverse;
}

.differentials-list ul {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.differentials-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.differentials-list i {
    color: var(--accent-red);
    font-size: 1.2rem;
}

.differentials-image img {
    max-width: 450px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Expansion Block */
.expansion-block {
    padding: 80px 20px;
    text-align: center;
    background-color: var(--primary-brown);
    color: white;
}

.expansion-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
}

.expansion-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Final CTA */
.final-cta {
    position: relative;
    padding: 100px 20px;
    text-align: center;
    background: url('images/banner1.png') no-repeat center center/cover;
    color: white;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    line-height: 1.3;
}

.big-btn {
    font-size: 1.2rem;
    padding: 15px 40px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 5%;
    }

    .nav-links,
    .nav-contact {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .navbar.active .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #1a1a1a;
        padding: 20px;
        text-align: center;
    }

    .hero {
        padding-bottom: 150px;
        /* Increased space for top decoration overlap on Vision/Small screens */
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-item {
        justify-content: center;
        text-align: center;
        flex-direction: column-reverse;
    }

    .feature-icon {
        margin-left: 0;
        margin-bottom: 10px;
    }

    .feature-center-image {
        order: -1;
        margin-bottom: 30px;
    }

    .location-container {
        flex-direction: column;
    }

    .promo-banners {
        flex-direction: column;
    }

    .features-top-decoration {
        transform: translateY(-95%);
        /* Safe overlap (5%) to prevent gaps while transitioning */
    }



    /* Revenda Mobile Adjustments */
    .impact-section,
    .social-proof,
    .partnership-inclusions,
    .differentials,
    .expansion-block,
    .final-cta {
        padding: 40px 20px;
    }

    .social-proof-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .social-text {
        min-width: unset;
        width: 100%;
    }

    .differentials-content {
        flex-direction: column-reverse;
        /* Image top, text bottom */
        gap: 30px;
        text-align: center;
    }

    .differentials-list li {
        justify-content: center;
    }

    .expansion-content h2,
    .cta-content h2 {
        font-size: 1.8rem;
    }
}