/* Fontes PolySans (Neutral e Median) */
@font-face {
    font-family: 'PolySans';
    src: url('fonts/polysanstrial-neutral.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PolySans';
    src: url('fonts/polysansitalictrial-neutralitalic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'PolySans';
    src: url('fonts/polysanstrial-median.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PolySans';
    src: url('fonts/polysansitalictrial-medianitalic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* Reset e configurações base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'PolySans', sans-serif;
    line-height: 1.6;
    color: #2E2D2C;
    overflow-x: hidden;
}

.container {
    max-width: 1497px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Pré-nav */
.pre-nav {
    background-color: #303038;
    color: #FFFFFF;
    text-align: center;
    padding: 5px 0;
    font-size: 12px;
    font-weight: 400;
    line-height: 2em;
}

/* Navigation */
.navbar {
    background-color: #FFFFFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(12px);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1497px;
    margin: 0 auto;
    padding: 0 153px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo svg {
    width: 120px;
    height: 65px;
   
}

.nav-links {
    display: flex;
    gap: 43px;
    align-items: center;
}

.nav-links a {
    color: #2E2D2C;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #0412F8;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: #0412F8;
}

/* Menu Hambúrguer */
.hamburger-menu {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    width: 30px;
    height: 24px;
    justify-content: space-between;
}

.hamburger-icon span {
    width: 100%;
    height: 3px;
    background-color: #2E2D2C;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-icon.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-icon.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-icon.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Menu Mobile */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #FFFFFF;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    color: #2E2D2C;
    text-decoration: none;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5em;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: #0412F8;
}

/* Hero Section */
.hero {
    position: relative;
    height: 642px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    z-index: -2;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 0.2;
    z-index: -1;
}

.hero-content {
    max-width: 1497px;
    margin: 0 auto;
    padding: 0 146px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    max-width: 1241px;
    height: 310px;
    position: relative;
    top: -20px;
    justify-content: center;
    align-items: flex-start;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: left;
    align-items: flex-start;
}

.hero-text h1 {
    font-family: 'PolySans', sans-serif;
    font-size: 51.2px;
    font-weight: 700;
    line-height: 1.07em;
    color: #FFFFFF;
    margin: 0;
    height: auto;
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-text h1 em {
    font-style: italic;
    font-weight: 400;
}

.hero-text p {
    font-size: 15.84px;
    font-weight: 400;
    line-height: 1.57em;
    color: #FFFFFF;
    width: 100%;
    max-width: 600px;
    margin: 0;
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* CTA Button */
.cta-button {
    display: flex;
    width: 318px;
    height: 48px;
    min-height: 48px;
    padding: var(--Size-Spacing-1, 8px) var(--Size-Spacing-3, 24px);
    justify-content: center;
    align-items: center;
    gap: var(--Size-Spacing-2, 16px);

    border-radius: var(--Size-Radius-Rounded, 1000px);
    border: 1px solid #000;
    background: var(--Rosa, #FEC1E0);

    /* Brutal-Shadow-1 */
    box-shadow: -2px 2px 0 0 #000;

    color: #2E2D2C;
    font-size: 15.375px;
    font-weight: 400;
    line-height: 1.56em;
    cursor: pointer;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    text-decoration: none;
}

.cta-button:hover {
    transform: translate(-1px, 1px);
    box-shadow: -1px 1px 0 0 #000;
    text-decoration: none;
}

/* Carousel Section */
.carousel-section {
    background-color: #FEC1E0;
    height: 56px;
    overflow: hidden;
    position: relative;
    margin-top: -30px;
}

.carousel-container {
    height: 100%;
    display: flex;
    align-items: center;
}

.carousel-track {
    display: flex;
    align-items: center;
    gap: 81px;
    animation: scroll 20s linear infinite;
    white-space: nowrap;
}

.carousel-track span {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    letter-spacing: 2.5%;
    text-transform: uppercase;
    color: #303038;
    white-space: nowrap;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Features Section */
.features-section {
    background-color: #FFFFFF;
    padding: 79px 0 50px;
}

.features-grid {
    display: flex;
    justify-content: center;
    gap: 169px;
    max-width: 1130px;
    margin: 0 auto;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 264px;
    text-align: center;
    opacity: 1;
    visibility: visible;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-content h3 {
    font-family: 'PolySans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4em;
    color: #000000;
    margin-bottom: 32px;
}

.feature-content p {
    font-size: 13.45px;
    font-weight: 400;
    line-height: 1.56em;
    color: #000000;
    margin-bottom: 20px;
}

/* Margem específica para o segundo card (Queremos ouvir a sua opinião) */
.feature-card:nth-child(2) .feature-content p {
    margin-top: 10px;
}

/* Why Section */
.why-section {
    background-color: #FFFEF7;
    position: relative;
    height: 694px;
    display: flex;
}

.why-background {
    width: 100%;
    max-width: 767px;
    height: 694px;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 287px 57px;
    position: relative;
    overflow: hidden;
}

.why-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.why-background h2 {
    font-family: 'PolySans', sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.5em;
    color: #FFFFFF;
    text-align: center;
    z-index: 2;
    position: relative;
}

.why-content {
    flex: 1;
    padding: 88px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 37px;
    max-width: 454px;
    margin-left: 40px;
    position: relative;
    z-index: 1;
}

.why-text h2 {
    font-family: 'PolySans', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.5em;
    color: #000000;
    margin-bottom: 25px;
}

.why-text p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.73em;
    color: #000000;
    width: 407px;
}

.benefits h3 {
    font-family: 'PolySans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.625em;
    color: #000000;
    margin-bottom: 30px;
}

.benefits-list {
    list-style: none;
    margin-bottom: 30px;
}

.benefits-list li {
    font-size: 15.375px;
    font-weight: 400;
    line-height: 1.69em;
    color: #000000;
    margin-bottom: 13px;
    padding-left: 20px;
    position: relative;
}

.benefits-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 19px;
    color: #000000;
}

/* Products Section */
.products-section {
    background-color: #FEC1E0;
    padding: 60px 0 0;
}



.products-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.products-header h2 {
    font-family: 'PolySans', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.5em;
    color: #2E2D2C;
    margin-bottom: 12px;
}

.products-header p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.375em;
    color: #2E2D2C;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 0;
    width: 100%;
    max-width: 100%;
}

.product-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #2E2D2C;
    background-color: #FFFEF7;
    position: relative;
}

.product-image {
    width: 100%;
    height: 340px;
    position: relative;
    overflow: hidden;
}

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

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    position: relative;
}

.image-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    opacity: 0.3;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.product-bottle {
    position: absolute;
    right: 40px;
    top: 230px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottle-img {
    width: 80px;
    height: 140px;
    object-fit: contain;
    object-position: center;
    display: block;
    margin: 0 auto;
}

/* Imagem específica do destilado com proporção aumentada */
.product-card:nth-child(2) .bottle-img {
    width: 115px;
    height: 155px;
    margin-top: -10px;
}

.bottle-image {
    width: 80px;
    height: 120px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.beer-can {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.wine-bottle {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    border-radius: 4px 4px 20px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.energy-bottle {
    background: linear-gradient(135deg, #e91e63 0%, #ad1457 100%);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.protein-box {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.bottle-label {
    text-align: center;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 8px;
    line-height: 1.2;
    padding: 4px;
}

.label-main {
    font-size: 7px;
    font-weight: 700;
    margin-bottom: 2px;
}

.label-sub {
    font-size: 6px;
    opacity: 0.9;
    margin-bottom: 2px;
}

.label-brand {
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 2px;
}

.label-details {
    font-size: 5px;
    opacity: 0.8;
}

.label-circle {
    width: 20px;
    height: 20px;
    background: #FFFFFF;
    color: #e91e63;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    font-weight: 700;
    margin: 0 auto 2px;
}

.label-protein {
    font-size: 12px;
    font-weight: 700;
    margin-top: 2px;
}

.product-content {
    flex: 1;
    padding: 24px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 1px solid #2E2D2C;
}

.product-content h3 {
    font-family: 'PolySans', sans-serif;
    font-size: 17.58px;
    font-weight: 700;
    line-height: 1.43em;
    color: #000000;
    margin-bottom: 25px;
}

.product-subtitle {
    font-size: 13.56px;
    font-weight: 400;
    line-height: 1.47em;
    color: #303038;
    margin-bottom: 30px;
}

.product-description {
    font-size: 13.45px;
    font-weight: 400;
    line-height: 1.49em;
    color: #000000;
}

.mission-section {
    background-color: #FEC1E0;
    border: 1px solid #0F172A;
    padding: 94px 295px;
    text-align: center;
}

.mission-section p {
    font-family: 'PolySans', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.46em;
    color: #303038;
}

/* Footer */
.footer {
    background-color: #2E2D2C;
}

.partners-section {
    background-color: #FFFFFF;
    padding: 27px 0;
}

.partners-content {
    display: flex;
    align-items: center;
    gap: 116px;
    justify-content: center;
}

.partners-label {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75em;
    color: #000000;
}

.partners-logos {
    display: flex;
    gap: 195px;
    align-items: center;
}

.partner-logo {
    width: 80px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-logo a {
    display: block;
    transition: opacity 0.3s ease;
}

.partner-logo a:hover {
    opacity: 0.8;
}

.footer-main {
    background-color: #2E2D2C;
    padding: 87px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-left {
    max-width: 421px;
}

.footer-left h3 {
    font-size: 15.375px;
    font-weight: 400;
    line-height: 1.56em;
    color: #FAF9F6;
    margin-bottom: 56px;
}

.footer-cta {
    display: flex;
    width: 318px;
    height: 48px;
    min-height: 48px;
    padding: var(--Size-Spacing-1, 8px) var(--Size-Spacing-3, 24px);
    justify-content: center;
    align-items: center;
    gap: var(--Size-Spacing-2, 16px);

    border-radius: var(--Size-Radius-Rounded, 1000px);
    border: 1px solid #000;
    background: var(--Rosa, #FEC1E0);

    /* Brutal-Shadow-1 */
    box-shadow: -2px 2px 0 0 #000;

    color: #2E2D2C;
    font-size: 14.75px;
    font-weight: 400;
    line-height: 1.08em;
    cursor: pointer;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
    text-decoration: none;
}

.footer-cta:hover {
    transform: translate(-1px, 1px);
    box-shadow: -1px 1px 0 0 #000;
    text-decoration: none;
}

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

.footer-bottom {
    border-top: 1px solid rgba(250, 249, 246, 0.2);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13.45px;
    font-weight: 400;
    line-height: 1.49em;
    color: #FAF9F6;
    opacity: 0.5;
}

.footer-bottom a {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-bottom a:hover {
    opacity: 1;
}

/* Responsividade */
@media (max-width: 1200px) {
    .nav-container {
        padding: 0 40px;
    }
    
    .container {
        padding: 0 24px;
    }
    
    .hero-content {
        padding: 0 40px;
        width: 100%;
        max-width: 800px;
        height: auto;
        top: 100px;
        align-items: flex-start;
    }
    
    .hero-text {
        gap: 25px;
    }
    
    .hero-text h1 {
        font-size: 38.4px;
        height: auto;
        line-height: 1.1em;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: left;
    }
    
    .hero-text p {
        width: 100%;
        max-width: 500px;
        font-size: 14.08px;
        line-height: 1.5em;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: left;
    }
    
    .features-grid {
        gap: 80px;
        flex-wrap: wrap;
    }
    
    .why-content {
        margin-left: 20px;
        padding: 40px 20px;
    }
    
    .why-text h2 {
        font-size: 36px;
    }
    
    .products-header {
        padding: 0 40px;
    }
    
    .products-header h2 {
        font-size: 36px;
    }
    
    .mission-section {
        padding: 60px 40px;
    }
    
    .mission-section p {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .pre-nav {
        font-size: 10px;
        padding: 3px 0;
    }
    
    .logo svg {
        width: 100px;
        height: 55px;
    }
    
    .nav-container {
        padding: 0 20px;
        flex-direction: row;
        gap: 0;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .nav-links {
        display: none;
    }
    
    .hamburger-menu {
        display: block;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .hero {
        height: 500px;
    }
    
    .hero-video {
        object-fit: cover;
        object-position: center;
    }
    
    .hero-content {
        padding: 0 20px;
        gap: 30px;
        top: 80px;
        align-items: flex-start;
    }
    
    .hero-text {
        gap: 20px;
    }
    
    .hero-text h1 {
        font-size: 25.6px;
        line-height: 1.2em;
        height: auto;
        min-height: 80px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: left;
    }
    
    .hero-text p {
        width: 100%;
        font-size: 14.08px;
        height: auto;
        line-height: 1.5em;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: left;
    }
    
    .cta-button {
        width: auto;
        min-width: 250px;
        height: 50px;
        font-size: 14px;
        padding: 12px 20px;
    }
    
    .footer-cta {
        font-size: 13px;
        padding: 12px 20px;
        height: 45px;
    }
    
    .carousel-section {
        margin-top: -20px;
    }
    
    .carousel-track {
        gap: 40px;
    }
    
    .carousel-track span {
        font-size: 14px;
    }
    
    .features-section {
        padding: 40px 20px;
    }
    
    .features-grid {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        width: 100%;
        max-width: 100%;
        display: flex !important;
    }
    
    .feature-card {
        width: 100%;
        max-width: 350px;
        padding: 20px;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        text-align: center;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .feature-icon {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
    }
    
    .feature-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .feature-content h3 {
        font-size: 16px;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .feature-content p {
        font-size: 14px;
        line-height: 1.5;
        text-align: center;
        margin-bottom: 15px;
    }
    
    /* Margem específica para o segundo card - Tablet */
    .feature-card:nth-child(2) .feature-content p {
        margin-top: 8px;
    }
    
    .why-section {
        flex-direction: column;
        height: auto;
    }
    
    .why-background {
        width: 100%;
        max-width: 100%;
        height: 400px;
        padding: 100px 40px;
        margin: 0 auto;
    }
    
    .why-bg-image {
        object-position: center;
    }
    
    .why-background h2 {
        font-size: 36px;
        text-align: center;
    }
    
    .why-content {
        margin-left: 0;
        padding: 40px 20px;
        max-width: 100%;
        gap: 25px;
    }
    
    .why-text h2 {
        font-size: 28px;
    }
    
    .why-text p {
        width: 100%;
    }
    
    .products-section {
        padding: 40px 0;
    }
    
    .products-header {
        padding: 0 20px;
        margin-bottom: 40px;
    }
    
    .products-header h2 {
        font-size: 28px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    

    
    .product-image {
        width: 100%;
        height: 200px;
    }
    
    .product-img {
        object-fit: cover;
        object-position: center;
    }
    
    .product-content {
        padding: 20px;
    }
    
    .product-bottle {
        right: 20px;
        top: 180px;
    }
    
    .bottle-image {
        width: 60px;
        height: 90px;
    }
    
    .bottle-img {
        width: 60px;
        height: 90px;
        object-fit: contain;
        object-position: center;
        display: block;
        margin: 0 auto;
    }
    
    /* Imagem específica do destilado com proporção aumentada - Tablet */
    .product-card:nth-child(2) .bottle-img {
        width: 95px;
        height: 125px;
        margin-top: -8px;
    }
    
    .bottle-label {
        font-size: 6px;
        padding: 2px;
    }
    
    .label-main {
        font-size: 5px;
    }
    
    .label-sub {
        font-size: 4px;
    }
    
    .label-brand {
        font-size: 8px;
    }
    
    .label-details {
        font-size: 4px;
    }
    
    .label-circle {
        width: 16px;
        height: 16px;
        font-size: 6px;
    }
    
    .label-protein {
        font-size: 10px;
    }
    

    
    .mission-section {
        padding: 40px 20px;
    }
    
    .mission-section p {
        font-size: 18px;
    }
    
    .partners-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .partners-logos {
        gap: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .footer-left {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-video {
        object-fit: cover;
        object-position: center;
    }
    
    .logo svg {
        width: 80px;
        height: 45px;
    }
    
    .hero-text h1 {
        font-size: 22.4px;
        line-height: 1.2em;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: left;
    }
    
    .hero-text p {
        font-size: 12.32px;
        line-height: 1.5em;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: left;
    }
    
    .cta-button {
        width: auto;
        min-width: 220px;
        height: 45px;
        font-size: 13px;
        padding: 10px 15px;
    }
    
    .footer-cta {
        font-size: 12px;
        padding: 10px 15px;
        height: 40px;
    }
    
    .carousel-section {
        margin-top: -15px;
    }
    
    .carousel-track span {
        font-size: 12px;
    }
    
    .features-section {
        padding: 30px 15px;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-bottle {
        right: 15px;
        top: 150px;
    }
    
    .product-img {
        object-fit: cover;
        object-position: center;
    }
    
    .bottle-img {
        width: 50px;
        height: 75px;
        object-fit: contain;
        object-position: center;
        display: block;
        margin: 0 auto;
    }
    
    /* Imagem específica do destilado com proporção aumentada - Mobile */
    .product-card:nth-child(2) .bottle-img {
        width: 85px;
        height: 110px;
        margin-top: -6px;
    }
    
    .features-grid {
        gap: 30px;
    }
    
    .feature-card {
        max-width: 300px;
        padding: 15px;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }
    
    .feature-content h3 {
        font-size: 15px;
        margin-bottom: 12px;
        text-align: center;
    }
    
    .feature-content p {
        font-size: 13px;
        text-align: center;
        margin-bottom: 10px;
    }
    
    /* Margem específica para o segundo card - Mobile */
    .feature-card:nth-child(2) .feature-content p {
        margin-top: 6px;
    }
    
    .why-background {
        width: 100%;
        max-width: 100%;
        height: 300px;
        padding: 60px 20px;
        margin: 0 auto;
    }
    
    .why-bg-image {
        object-position: center;
    }
    
    .why-background h2 {
        font-size: 28px;
        text-align: center;
    }
    
    .why-text h2 {
        font-size: 24px;
    }
    
    .products-header h2 {
        font-size: 24px;
    }
    
    .mission-section p {
        font-size: 16px;
    }
    
    .partners-logos {
        gap: 20px;
    }
    
    .partner-logo {
        width: 60px;
        height: 40px;
    }
    
    .partner-logo img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }
}

/* Animações e transições suaves */
.feature-card,
.product-card,
.cta-button,
.footer-cta {
    transition: all 0.3s ease;
}

/* Garantir que todos os feature cards sejam visíveis */
.feature-card:nth-child(1),
.feature-card:nth-child(2),
.feature-card:nth-child(3) {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Regra específica para o terceiro card */
.feature-card:last-child {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Garantir que todos os cards sejam visíveis em mobile */
@media (max-width: 768px) {
    .features-grid .feature-card {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: relative !important;
        z-index: 1 !important;
        margin-bottom: 20px !important;
    }
}





/* Otimizações de performance */
.hero-background,
.product-image,
.image-placeholder {
    will-change: transform;
}

.carousel-track {
    will-change: transform;
}

/* Acessibilidade */
@media (prefers-reduced-motion: reduce) {
    .carousel-track {
        animation: none;
    }
    
    .cta-button:hover,
    .footer-cta:hover,
    .feature-card:hover {
        transform: none;
    }
}

/* Foco visível para navegação por teclado */
.nav-links a:focus,
.cta-button:focus,
.footer-cta:focus {
    outline: 2px solid #0412F8;
    outline-offset: 2px;
}

/* Melhorias de contraste */
@media (prefers-contrast: high) {
    .hero-overlay {
        opacity: 0.5;
    }
    
    .cta-button {
        border: 2px solid #FAF9F6;
    }
    
    .footer-cta {
        border: 2px solid #2E2D2C;
    }
}
