/* style.css */
:root {
    --primary-color: #ffffff;
    --background: #000000;
    --accent-color: #cd0e61;

    --font-heading: 'Montserrat', sans-serif;
    --font-ui: 'Montserrat', sans-serif;

    --text-muted: rgba(255, 255, 255, 0.7);
    --text-dark: #000000;
    --bg-light: #f8f8f8;
    --border-color: rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background);
    color: var(--primary-color);
    font-family: var(--font-ui);
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero-wrapper {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

/* Base styling for video background placeholder */
.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--background);
    z-index: 0;
    overflow: hidden;
}

.video-placeholder video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    /* Suavizar um pouco o vídeo para que textos fiquem mais legíveis */
}

/* Decorative vertical text like in reference */
.vertical-brand-text {
    position: absolute;
    left: -2vh;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-family: var(--font-heading);
    font-size: 18vh;
    opacity: 0.06;
    letter-spacing: 0.05em;
    pointer-events: none;
    z-index: 1;
    white-space: nowrap;
    text-transform: uppercase;
    color: var(--primary-color);
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: transparent;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.main-header.scrolled-light {
    background-color: rgba(248, 248, 248, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.main-header.scrolled-light .center-nav ul {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

.main-header.scrolled-light a,
.main-header.scrolled-light button,
.main-header.scrolled-light {
    color: #000;
}

.main-header.scrolled-light .logo-image {
    filter: invert(1) brightness(0);
}

.logo {
    display: inline-flex;
    align-items: center;
}

.logo-image {
    height: 48px;
    width: auto;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 100;
}

.center-nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
}

.center-nav a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.center-nav a:hover {
    opacity: 0.5;
}

.header-right {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.header-right a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.header-right a:hover {
    opacity: 0.6;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-btn {
    opacity: 0.5;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.lang-btn.active {
    opacity: 1 !important;
    color: var(--accent-color) !important;
}

.lang-divider {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.6rem;
    pointer-events: none;
}

/* Hero Section */
.hero-section {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 4rem;
    z-index: 5;
    pointer-events: none;
}

.hero-content {
    max-width: 420px;
    margin-left: 6vw;
    margin-bottom: 2rem;
    pointer-events: auto;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #a80a4e;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(205, 14, 97, 0.4);
}

.bottom-right-info {
    position: absolute;
    bottom: 4rem;
    right: 4rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    pointer-events: auto;
}

.bottom-right-info p {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 500;
}

.sound-toggle {
    background: none;
    border: none;
    color: var(--primary-color);
    font-family: var(--font-ui);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.sound-toggle:hover {
    opacity: 0.6;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.main-header {
    animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

.bottom-right-info {
    animation: fadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.vertical-brand-text {
    animation: fadeIn 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

/* Responsividade */
@media (max-width: 1024px) {
    .main-header {
        padding: 1.5rem 2rem;
    }

    .hero-content {
        max-width: 380px;
    }

    .vertical-brand-text {
        font-size: 18vh;
        left: -8vh;
    }

    .center-nav ul {
        gap: 1.5rem;
        padding: 0.8rem 1.5rem;
    }

    .bottom-right-info {
        right: 2rem;
        bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .main-header {
        padding: 1rem;
    }

    .header-right {
        display: none;
    }

    .center-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 90;
    }

    .center-nav.active {
        opacity: 1;
        pointer-events: auto;
    }

    .center-nav ul {
        flex-direction: column;
        background: transparent;
        border: none;
        backdrop-filter: none;
        gap: 2rem;
        text-align: center;
    }

    .center-nav a {
        font-size: 1.2rem;
    }

    .vertical-brand-text {
        font-size: 12vh;
        left: 0;
        top: 25%;
        opacity: 0.1;
    }

    .hero-section {
        padding: 2rem 1rem;
        padding-bottom: 6rem;
    }

    .hero-content {
        margin-left: 0;
        max-width: 100%;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .bottom-right-info {
        right: 1rem;
        bottom: 1rem;
        gap: 1rem;
        flex-direction: column;
        align-items: flex-end;
    }
}

/* ================== Auth Page (Login / Register) ================== */
.auth-page .video-placeholder {
    opacity: 0.3;
}

.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 100px);
    position: relative;
    z-index: 10;
}

.auth-box {
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    width: 100%;
    max-width: 480px;
    text-align: center;
}

.auth-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 2rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.form-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    color: #fff;
    border-radius: 8px;
    font-family: var(--font-ui);
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
}

.auth-actions {
    display: flex;
    justify-content: flex-end;
}

.forgot-password {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-decoration: none;
    transition: color 0.3s;
}

.forgot-password:hover {
    color: #fff;
}

.auth-submit {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
}

.auth-divider {
    margin: 2rem 0;
    color: var(--text-muted);
    font-size: 0.8rem;
    position: relative;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.auth-divider::before {
    left: 0;
}

.auth-divider::after {
    right: 0;
}

.secondary-btn {
    width: 100%;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--accent-color);
}

.secondary-btn:hover {
    background: rgba(205, 14, 97, 0.1);
    box-shadow: none;
}

/* ================== Account Dashboard ================== */
.account-page {
    overflow-y: auto;
}

.account-dashboard {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
}

.account-sidebar {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    height: fit-content;
}

.user-profile-summary {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.user-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), #4a0024);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.user-profile-summary h3 {
    font-family: var(--font-heading);
    font-weight: 500;
}

.user-profile-summary p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.account-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.account-nav a {
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.account-nav a:hover,
.account-nav a.active {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.dashboard-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.dashboard-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.dash-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 16px;
}

.dash-card h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.order-status {
    color: var(--accent-color);
    font-size: 0.8rem;
    font-weight: 600;
}

.order-id {
    font-size: 1.2rem;
    margin: 0.5rem 0 1rem;
}

.dash-link {
    color: #fff;
    font-size: 0.8rem;
    text-decoration: underline;
}

.recent-orders h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
}

.orders-table th,
.orders-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

.orders-table th {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.status-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.status-badge.processing {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.status-badge.delivered {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

@media (max-width: 900px) {
    .account-dashboard {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .auth-box {
        padding: 2rem;
    }

    .auth-container {
        height: auto;
        padding: 2rem 1rem;
    }

    .account-dashboard {
        padding: 0 1rem;
        margin: 1.5rem auto;
    }
}

/* ================== Products Section (Carousel) ================== */
.products-section {
    background-color: #f8f8f8;
    /* Fundo claro da referência */
    color: #000;
    padding: 6rem 4rem;
    position: relative;
    z-index: 20;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 500;
}

.carousel-nav {
    display: flex;
    gap: 1rem;
}

.nav-btn {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #000;
}

.nav-btn:hover {
    border-color: #000;
    background: #000;
    color: #fff;
}

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

.product-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 2rem;
    /* Hide scrollbar for cleaner look */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.product-carousel::-webkit-scrollbar {
    display: none;
}

.product-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-card:hover .prod-img {
    transform: scale(1.05);
}

.card-image-box {
    background-color: #f2f2ef;
    aspect-ratio: 0.75;
    border-radius: 4px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.product-tag {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--accent-color);
    font-weight: 500;
}

.tag-dot {
    width: 10px;
    height: 10px;
    background-color: var(--accent-color);
}

.prod-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    transition: transform 0.5s ease;
}

.add-bag-btn {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: #fff;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
    color: #000;
}

.add-bag-btn:hover {
    transform: scale(1.05);
}

.card-details {
    padding: 0 0.5rem;
}

.prod-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.prod-desc {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.prod-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.btn-saiba-mais {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    /* Gradient for left-to-right text fill */
    background: linear-gradient(to right, var(--accent-color) 50%, var(--text-dark) 50%);
    background-size: 200% 100%;
    background-position: 100% 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 0.2s ease-in-out;
}

.btn-saiba-mais:hover {
    background-position: 0 0;
}

.prod-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.stars {
    color: #f5c518;
    font-size: 0.9rem;
    letter-spacing: -2px;
}

.reviews {
    font-size: 0.75rem;
    color: #888;
}

.prod-price {
    font-weight: 600;
    font-size: 1rem;
}

/* ================== Scroll Text Section ================== */
.scroll-text-section {
    background-color: #f2f2ef;
    color: #000;
    padding: 10rem 4rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
}

.scroll-container {
    position: sticky;
    top: 25vh;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.scroll-text-content {
    flex: 1;
    max-width: 700px;
}

.scroll-image-col {
    position: absolute;
    bottom: 0;
    right: 5%;
    display: flex;
    align-items: flex-end;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.scroll-image-col img {
    width: auto;
    max-height: 90%;
    max-width: 45vw;
    object-fit: contain;
}

.scroll-text {
    font-family: var(--font-heading);
    text-align: left;
    max-width: 800px;
}

.scroll-intro {
    font-size: 1.25rem;
    /* Smaller text (~20px) */
    line-height: 1.6;
    font-weight: 400;
    display: block;
    margin-top: 1.5rem;
    max-width: 600px;
}

.scroll-highlight {
    font-family: "loos-extended", var(--font-heading), sans-serif;
    font-size: 2.5rem;
    /* ~40px */
    line-height: 1.2;
    font-weight: 200;
    display: block;
}

.scroll-text .word {
    opacity: 0.1;
    transition: opacity 0.1s ease;
    display: inline-block;
    margin-right: 0.25em;
}

.simple-dark-btn {
    display: inline-flex;
    align-items: center;
    background-color: #000;
    color: #fff;
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-top: 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.simple-dark-btn:hover {
    background-color: #333;
}

.simple-dark-btn.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .product-card {
        flex: 0 0 65vw;
    }

    .card-image-box {
        padding: 2rem;
    }

    .scroll-text-section {
        padding: 6rem 2rem;
    }

    .scroll-container {
        flex-direction: column;
        gap: 3rem;
        position: relative;
        top: 0;
    }

    .scroll-image-col {
        justify-content: center;
    }

    .scroll-intro {
        font-size: 1rem;
    }

    .scroll-highlight {
        font-size: 1.8rem;
    }
}

/* ================== Drinkpouch Feature Section ================== */
.drinkpouch-feature {
    position: relative;
    width: 100vw;
    min-height: 80vh;
    background-color: #0b1a45;
    overflow: hidden;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 6rem 4rem;
    z-index: 10;
    margin-bottom: 4rem;
}

.drinkpouch-feature::after {
    content: '';
    position: absolute;
    inset: -20px;
    background-image: url('assets/fundo_banner.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(3px); /* Lighter blur */
    z-index: -2;
}

.drinkpouch-feature::before {
    display: none; /* removed blue shadow */
}

.dp-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.dp-text-col {
    flex: 1;
    max-width: 600px;
    padding-right: 4rem;
}

.dp-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-bottom: 4rem;
}

.dp-title-group {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
}

.dp-marker {
    font-size: 0.75rem;
    font-family: monospace;
    color: rgba(255, 255, 255, 0.7);
    padding-top: 0.7rem;
    position: relative;
}

.dp-marker::before {
    content: '';
    position: absolute;
    top: -1rem;
    left: 0;
    width: 1px;
    height: 1.2rem;
    background: rgba(255,255,255,0.3);
}

.dp-title {
    font-family: "loos-extended", var(--font-heading), serif;
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.1;
    color: #fff;
    margin-top: 0;
    margin-bottom: 0;
}

.dp-desc-wrapper {
    padding-top: 0.6rem;
}

.dp-subtitle {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-weight: 400;
    margin-top: 0;
}

.dp-p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2.5rem;
    max-width: 450px;
}

.dp-btn {
    display: inline-flex;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.dp-btn:hover {
    background: #fff;
    color: #0a1945;
}

.dp-image-col {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    pointer-events: none; /* Let clicks pass if needed */
}

.dp-product-media {
    width: auto;
    max-height: 90vh;
}

.dp-product-media:hover {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .drinkpouch-feature {
        padding: 4rem 2rem;
    }
    .dp-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .dp-text-col {
        padding-right: 0;
        margin-bottom: 4rem;
        max-width: 100%;
    }
    .dp-title {
        font-size: 3.5rem;
    }
    .dp-image-col {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .dp-title {
        font-size: 2.5rem;
    }
    .dp-title-group {
        flex-direction: column;
        gap: 1rem;
    }
    .dp-marker::before {
        display: none;
    }
}

@media (max-width: 1024px) {
    .dp-content { flex-direction: column; align-items: flex-start; }
    .dp-text-col { padding-right: 0; margin-bottom: 3rem; max-width: 100%; }
    .dp-image-col {
        position: relative;
        right: auto;
        bottom: auto;
        margin: 0;
        width: 100%;
        justify-content: center;
        margin-top: 2rem;
    }
    .dp-product-media { max-width: 100%; }
}
@media (max-width: 768px) {
    .scroll-image-col {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        justify-content: center;
        margin-top: 2rem;
    }
    .scroll-image-col img { max-width: 100%; max-height: 50vh; }
}

/* ================== Community Section ================== */
.community-section {
    background-color: var(--background);
    color: var(--primary-color);
    padding: 6rem 4rem;
    position: relative;
    z-index: 20;
    overflow: hidden;
}

.community-content {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
}

.community-text-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.community-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.community-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.community-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 3.5rem;
    max-width: 400px;
}

.community-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.community-nav .nav-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.community-nav .nav-btn:hover {
    background: white;
    color: black;
    transform: scale(1.05);
}

.sound-toggle-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    margin-left: 2rem;
}

.sound-toggle-btn:hover {
    background: white;
    color: black;
    transform: scale(1.05);
}

.community-videos-col {
    flex: 0 0 520px; /* Largura total da coluna visual do carrossel */
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, black 80%, transparent 100%);
    mask-image: linear-gradient(to right, black 80%, transparent 100%); /* Cria o efeito bonito de fade-out no segundo vídeo */
    border-radius: 16px;
    padding-right: 20px;
}

.comm-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 1rem;
    cursor: grab;
}

.comm-carousel:active {
    cursor: grabbing;
}

.comm-carousel::-webkit-scrollbar {
    display: none;
}

.comm-video-card {
    /* 1 vídeo inteiro (ex: 380px) de forma definida, o restante do espaço de 520px mostra o próximo! */
    flex: 0 0 380px; 
    height: 680px;
    scroll-snap-align: start;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: #000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transform: scale(0.98);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Um leve boost visual para dar sensação de foco */
.comm-video-card:hover {
    transform: scale(1);
}

.comm-video-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    pointer-events: auto; /* Reativa eventos dentro do wrapper do vídeo */
}

.comm-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Play/Pause Button */
.video-play-pausepause {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 5;
    opacity: 0;
    transition: opacity 0.4s, background 0.3s;
}

.video-play-pausepause:hover {
    background: rgba(255,255,255,0.25);
}

.comm-video-wrapper:hover .video-play-pausepause {
    opacity: 1; /* Mostra o botão ao passar o mouse por cima do vídeo */
}

.video-play-pausepause .icon-play { display: none; }
.video-play-pausepause .icon-pause { display: block; }

.video-play-pausepause.paused .icon-play { display: block; }
.video-play-pausepause.paused .icon-pause { display: none; }
.video-play-pausepause.paused { opacity: 1; }

.comm-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, transparent 20%, transparent 75%, rgba(0,0,0,0.8) 100%);
    z-index: 2;
}

.user-handle {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.comm-product {
    position: relative;
    align-self: flex-end; /* Alinha a imagem do produto do lado direito */
    pointer-events: auto;
}

.comm-product-link {
    display: block;
}

.comm-product-thumb {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    background: white;
    padding: 4px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.comm-product-thumb:hover {
    transform: scale(1.05);
}

.comm-product-tooltip {
    position: absolute;
    bottom: 0;
    right: 80px; /* Posiciona à esquerda da miniatura */
    background: rgba(255,255,255,0.95);
    color: black;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.comm-product:hover .comm-product-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@media (max-width: 1024px) {
    .community-content {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }
    .community-desc {
        margin: 0 auto 2rem;
    }
    .community-nav {
        justify-content: center;
    }
    .sound-toggle-btn {
        margin-left: 1rem;
    }
    .community-videos-col {
        flex: auto;
        width: 100%;
        max-width: 480px;
        -webkit-mask-image: none;
        mask-image: none;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .community-section {
        padding: 4rem 1rem;
    }
    .community-videos-col {
        max-width: 100%;
        width: 100vw; /* Permite escorregar para fora no mobile */
        margin-left: -1rem; /* Borda à borda */
        margin-right: -1rem;
        padding-left: 1rem;
    }
    .comm-video-card {
        flex: 0 0 300px; 
        height: 520px;
    }
}

/* ================== Custom Cursor (Hero Section) ================== */
.hero-wrapper {
    cursor: none; /* Hide default cursor */
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    box-shadow: 0 0 10px var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s;
}

.cursor-outline {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s;
}

.hero-wrapper:hover .cursor-dot,
.hero-wrapper:hover .cursor-outline {
    opacity: 1;
}

/* Make sure inner elements in hero don't swallow the custom cursor entirely */
.hero-wrapper a, .hero-wrapper button {
    cursor: auto; /* Fallback when hovering over links to show native pointer */
}

/* ================== Main Footer (DUA Style) ================== */
.main-footer {
    position: relative;
    padding-top: 10rem;
    overflow: hidden;
    background-color: #f8f8f8;
}

.footer-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(248,248,248,1) 0%, rgba(248,248,248,0.7) 30%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.footer-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.footer-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 4rem;
    display: flex;
    gap: 4rem;
    justify-content: space-between;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    color: #000;
    margin-bottom: 6rem;
}

.footer-col {
    flex: 1;
}

.footer-col-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    gap: 1.2rem;
    display: flex;
    flex-direction: column;
}

.footer-links a {
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #000;
}

.newsletter-col {
    flex: 2;
}

.newsletter-form {
    display: flex;
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.newsletter-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    background: transparent;
    color: #000;
}

.newsletter-submit {
    background: none;
    border: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s;
    font-weight: 600;
}

.newsletter-submit:hover {
    color: #000;
}

.newsletter-disclaimer {
    font-size: 0.7rem;
    color: #888;
    line-height: 1.5;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 3rem;
    color: #fff;
}

.footer-brand-title {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.fb-logo {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.02em;
}

.fb-tagline {
    font-size: 1.2rem;
    line-height: 1.3;
    font-weight: 300;
}

.footer-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.footer-socials a {
    color: white;
    transition: opacity 0.3s;
}

.footer-socials a:hover {
    opacity: 0.7;
}

.footer-legal {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.75rem;
}

.footer-legal a {
    color: white;
    text-decoration: none;
}

.footer-legal a:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .footer-card {
        flex-direction: column;
        gap: 3rem;
        padding: 3rem;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 3rem;
    }
    .footer-brand-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .footer-meta {
        align-items: flex-start;
    }
    .fb-logo {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding-top: 4rem;
    }
    .footer-content-wrapper {
        padding: 0 1rem;
    }
    .footer-card {
        padding: 2rem;
    }
    .footer-legal {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}