﻿
@font-face {
    font-family: 'Vrindals Script';
    src: url('../font/Vrindals%20Script%20Dafont.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #c9a96e;
    --gold-light: #e8d5a3;
    --gold-dark: #a07d3f;
    --bg-primary: #0a0a0f;
    --bg-secondary: #111118;
    --bg-card: rgba(255, 255, 255, 0.03);
    --text-primary: #f5f0e8;
    --text-secondary: rgba(245, 240, 232, 0.6);
    --text-muted: rgba(245, 240, 232, 0.35);
    --accent: #e94560;
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'Space Grotesk', sans-serif;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-dark) var(--bg-primary);
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 3px;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    cursor: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
}

/* ===== CUSTOM CURSOR ===== */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
    mix-blend-mode: difference;
}

.cursor-ring {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s;
    opacity: 0.5;
}

body:has(.magnetic:hover) .cursor-dot,
body:has(a:hover) .cursor-dot {
    width: 16px;
    height: 16px;
    background: var(--accent);
}

body:has(.magnetic:hover) .cursor-ring,
body:has(a:hover) .cursor-ring {
    width: 60px;
    height: 60px;
    border-color: var(--accent);
    opacity: 0.3;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s;
}

    .preloader.hidden {
        opacity: 0;
        visibility: hidden;
    }

.preloader-inner {
    text-align: center;
}

.preloader-icon {
    font-size: 3rem;
    animation: shake 1.5s ease infinite;
    margin-bottom: 1rem;
}

@keyframes shake {
    0%, 100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-15deg);
    }

    75% {
        transform: rotate(15deg);
    }
}

.preloader-text {
    font-family: 'Vrindals Script', cursive;
    font-size: 1.8rem;
    color: var(--gold);
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: var(--glass-border);
    border-radius: 2px;
    overflow: hidden;
}

.preloader-fill {
    width: 0;
    height: 100%;
    background: var(--gold);
    animation: fill 1.8s ease forwards;
}

@keyframes fill {
    to {
        width: 100%;
    }
}

/* ===== PARTICLES ===== */
#particles {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

    .navbar.scrolled {
        background: rgba(10, 10, 15, 0.85);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        border-bottom: 1px solid var(--glass-border);
        padding: 0.8rem 0;
    }

    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    z-index: 1001;
}

.logo-icon {
    font-size: 1.4rem;
}

.logo-text {
    font-family: 'Vrindals Script', cursive;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.logo-accent {
    color: var(--gold);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

    .nav-links a {
        color: var(--text-secondary);
        text-decoration: none;
        font-size: 0.88rem;
        font-weight: 500;
        padding: 0.5rem 1rem;
        border-radius: var(--radius-sm);
        transition: all 0.3s ease;
        position: relative;
        letter-spacing: 0.3px;
    }

        .nav-links a:hover {
            color: var(--text-primary);
            background: var(--glass-bg);
        }

.nav-cta {
    background: var(--gold) !important;
    color: var(--bg-primary) !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    padding: 0.5rem 1.5rem !important;
}

    .nav-cta:hover {
        background: var(--gold-light) !important;
        transform: translateY(-1px);
    }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

    .menu-toggle span {
        width: 24px;
        height: 2px;
        background: var(--text-primary);
        transition: all 0.3s ease;
        transform-origin: center;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translateY(5.5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-5.5px);
    }

/* ===== HERO ===== */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) saturate(0.7);
    transform: scale(1.1);
    animation: heroZoom 20s ease alternate infinite;
}

@keyframes heroZoom {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1.2);
    }
}

.hero-grain {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.03;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(10,10,15,0.4) 0%, rgba(10,10,15,0.2) 40%, rgba(10,10,15,0.8) 100%), radial-gradient(ellipse at 20% 50%, rgba(201,169,110,0.08) 0%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--gold-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(74, 222, 128, 0);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 600;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.title-line {
    display: block;
}

.title-italic {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    cursor: none;
    font-family: var(--font-body);
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--gold);
    color: var(--bg-primary);
}

    .btn-primary:hover {
        background: var(--gold-light);
        transform: translateY(-3px);
        box-shadow: 0 10px 40px rgba(201, 169, 110, 0.3);
    }

    .btn-primary svg {
        transition: transform 0.3s;
    }

    .btn-primary:hover svg {
        transform: translateX(4px);
    }

.btn-ghost {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

    .btn-ghost:hover {
        background: var(--glass-bg);
        border-color: var(--gold-dark);
        transform: translateY(-3px);
    }

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.3rem;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--glass-border);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    z-index: 3;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

.scroll-text {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ===== MARQUEE BAND ===== */
.marquee-band {
    padding: 1.2rem 0;
    background: var(--gold);
    overflow: hidden;
    position: relative;
    z-index: 5;
}

.marquee-track {
    display: flex;
    gap: 2rem;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
    width: max-content;
}

    .marquee-track span {
        font-family: var(--font-mono);
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--bg-primary);
        text-transform: uppercase;
        letter-spacing: 2px;
    }

.marquee-dot {
    font-size: 0.6rem !important;
    opacity: 0.5;
    display: flex;
    align-items: center;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: var(--delay, 0s);
}

    .reveal-up.revealed {
        opacity: 1;
        transform: translateY(0);
    }

/* ===== SECTION COMMON ===== */
section {
    padding: clamp(80px, 12vw, 140px) 0;
    position: relative;
    z-index: 2;
}

.section-label {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

    .section-title em {
        color: var(--gold);
        font-style: italic;
    }

.section-header {
    text-align: center;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

    .section-header p {
        font-size: 1.05rem;
        color: var(--text-secondary);
        max-width: 550px;
        margin: 0 auto;
    }

/* ===== GLASS CARD ===== */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
}

/* ===== SOBRE ===== */
.sobre {
    background: var(--bg-primary);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}

.sobre-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

    .image-wrapper img {
        width: 100%;
        display: block;
        aspect-ratio: 3/4;
        object-fit: cover;
        filter: brightness(0.85) saturate(0.9);
        transition: all 0.6s ease;
    }

    .image-wrapper:hover img {
        filter: brightness(0.95) saturate(1);
        transform: scale(1.03);
    }

.image-frame {
    position: absolute;
    inset: -8px;
    border: 1px solid var(--gold-dark);
    border-radius: var(--radius-xl);
    opacity: 0.3;
    pointer-events: none;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    padding: 1.5rem 2rem;
    text-align: center;
    z-index: 2;
}

    .experience-badge .number {
        font-family: var(--font-display);
        font-size: 3rem;
        font-weight: 700;
        color: var(--gold);
        line-height: 1;
    }

    .experience-badge .number-plus {
        font-family: var(--font-display);
        font-size: 2rem;
        color: var(--gold);
    }

    .experience-badge .text {
        display: block;
        font-size: 0.75rem;
        color: var(--text-secondary);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-top: 0.3rem;
    }

.floating-drink {
    position: absolute;
    top: -15px;
    left: -15px;
    font-size: 2.5rem;
    animation: float 4s ease infinite;
    z-index: 2;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(10deg);
    }
}

.sobre-text .section-label {
    margin-bottom: 0.8rem;
}

.sobre-text .section-title {
    margin-bottom: 1.5rem;
}

.sobre-text > p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    padding: 1.2rem 1.5rem;
    transition: all 0.3s ease;
}

    .feature-item:hover {
        background: rgba(201, 169, 110, 0.05);
        border-color: rgba(201, 169, 110, 0.15);
    }

.feature-icon-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 110, 0.1);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.feature-icon {
    font-size: 1.4rem;
}

.feature-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.feature-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* ===== SERVIÇOS ===== */
.servicos {
    background: var(--bg-secondary);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.servico-card {
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

    .servico-card:hover {
        border-color: rgba(201, 169, 110, 0.2);
        transform: translateY(-8px);
    }

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.servico-card:hover .card-glow {
    opacity: 1;
}

.servico-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: rgba(201, 169, 110, 0.08);
    position: absolute;
    top: 15px;
    right: 25px;
    line-height: 1;
}

.servico-card.featured {
    background: linear-gradient(135deg, rgba(201,169,110,0.12), rgba(201,169,110,0.03));
    border-color: rgba(201, 169, 110, 0.2);
}

.badge {
    display: inline-block;
    background: var(--gold);
    color: var(--bg-primary);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.servico-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.servico-card h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.servico-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.servico-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

    .servico-list li {
        padding: 0.4rem 0;
        padding-left: 1.5rem;
        position: relative;
        color: var(--text-secondary);
        font-size: 0.9rem;
    }

        .servico-list li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--gold);
        }

.card-link {
    display: inline-flex;
    align-items: center;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

    .card-link:hover {
        color: var(--gold-light);
        gap: 0.3rem;
    }

/* ===== GALERIA ===== */
.galeria {
    background: var(--bg-primary);
    overflow: hidden;
}

.galeria-scroll {
    overflow: hidden;
    padding: 0 0 2rem;
    cursor: grab;
}

    .galeria-scroll:active {
        cursor: grabbing;
    }

.galeria-track {
    display: flex;
    gap: 1.5rem;
    padding: 0 clamp(20px, 4vw, 60px);
    width: max-content;
    animation: scrollGallery 40s linear infinite;
}

    .galeria-track:hover {
        animation-play-state: paused;
    }

@keyframes scrollGallery {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.drink-card {
    width: 320px;
    flex-shrink: 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
}

    .drink-card:hover {
        border-color: rgba(201, 169, 110, 0.2);
        transform: translateY(-8px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    }

.drink-image {
    height: 380px;
    overflow: hidden;
}

    .drink-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
        filter: brightness(0.85);
    }

.drink-card:hover .drink-image img {
    transform: scale(1.08);
    filter: brightness(1);
}

.drink-info {
    padding: 1.5rem;
}

.drink-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    background: rgba(201, 169, 110, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    margin-bottom: 0.8rem;
}

.drink-info h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.drink-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== DRINKS PERSONALIZADOS ===== */
.drinks-personalizados {
    padding: 120px 0;
    background: var(--bg-secondary);
    overflow: hidden;
}

.drinks-personal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.drinks-personal-image {
    position: relative;
}

.drinks-personal-image .image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3 / 4;
}

.drinks-personal-image .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.drinks-personal-image:hover .image-wrapper img {
    transform: scale(1.03);
}

.drinks-personal-image .image-frame {
    position: absolute;
    inset: -12px;
    border: 1px solid var(--gold-dark);
    border-radius: calc(var(--radius-lg) + 4px);
    opacity: 0.3;
    pointer-events: none;
    z-index: -1;
}

.custom-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 24px;
    border-radius: var(--radius-md);
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    z-index: 2;
}

.custom-badge .badge-icon {
    font-size: 2rem;
}

.custom-badge .badge-text {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.3;
}

.drinks-personal-text .section-label {
    margin-bottom: 12px;
}

.drinks-personal-text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.personal-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.personal-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-radius: var(--radius-md);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.personal-feature:hover {
    background: rgba(201, 169, 110, 0.06);
    border-color: rgba(201, 169, 110, 0.15);
    transform: translateX(6px);
}

.personal-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 110, 0.08);
    border-radius: var(--radius-sm);
}

.personal-feature h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.personal-feature p {
    font-size: 0.9rem !important;
    color: var(--text-secondary);
    margin-bottom: 0 !important;
    line-height: 1.5 !important;
}

@media (max-width: 968px) {
    .drinks-personal-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .drinks-personal-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .custom-badge {
        bottom: -10px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .drinks-personalizados {
        padding: 80px 0;
    }

    .custom-badge {
        padding: 14px 18px;
    }

    .personal-feature {
        padding: 16px;
    }
}

/* ===== DRINKS CAROUSEL ===== */
.drinks-showcase {
    padding: 120px 0 80px;
    background: var(--bg-primary);
    overflow: hidden;
}

.drinks-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.carousel-container {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.carousel-slide:hover img {
    transform: scale(1.03);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(12px);
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.carousel-btn:hover {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(201, 169, 110, 0.3);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
    flex-wrap: wrap;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
    box-shadow: 0 0 12px rgba(201, 169, 110, 0.4);
}

.carousel-counter {
    text-align: center;
    margin-top: 16px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 2px;
}

.carousel-current {
    color: var(--gold);
    font-weight: 600;
}

@media (max-width: 768px) {
    .drinks-showcase {
        padding: 80px 0 60px;
    }

    .drinks-carousel {
        padding: 0 40px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-slide {
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 480px) {
    .drinks-carousel {
        padding: 0 32px;
    }

    .carousel-btn {
        width: 34px;
        height: 34px;
    }

    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* ===== DEPOIMENTOS ===== */
.depoimentos {
    background: var(--bg-secondary);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.depoimento-card {
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

    .depoimento-card:hover {
        border-color: rgba(201, 169, 110, 0.15);
        transform: translateY(-5px);
    }

.quote-icon {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--gold);
    line-height: 1;
    opacity: 0.4;
    margin-bottom: -0.5rem;
}

.stars {
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.depoimento-card > p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.cliente {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.cliente-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(201, 169, 110, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--gold);
    font-size: 0.9rem;
}

.cliente strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.cliente span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== CONTATO ===== */
.contato {
    background: var(--bg-primary);
    position: relative;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: start;
}

.contato-info .section-title {
    color: var(--text-primary);
}

.contato-info > p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.2rem;
    transition: all 0.3s;
}

    .info-item:hover {
        border-color: rgba(201, 169, 110, 0.15);
    }

.info-icon {
    font-size: 1.3rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 110, 0.08);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
}

.info-item p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
}

    .social-link:hover {
        background: var(--gold);
        border-color: var(--gold);
        color: var(--bg-primary);
        transform: translateY(-3px);
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }

/* Form */
.contato-form {
    padding: clamp(2rem, 4vw, 3rem);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

    .form-group.floating label {
        position: absolute;
        left: 0;
        top: 1rem;
        color: var(--text-muted);
        font-size: 0.9rem;
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 1rem 0;
        background: transparent;
        border: none;
        border-bottom: 1px solid var(--glass-border);
        color: var(--text-primary);
        font-family: var(--font-body);
        font-size: 0.95rem;
        transition: border-color 0.3s;
        outline: none;
        border-radius: 0;
    }

    .form-group select {
        cursor: pointer;
        -webkit-appearance: none;
        appearance: none;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-bottom-color: var(--gold);
        }

            .form-group input:focus + label,
            .form-group input:not(:placeholder-shown) + label,
            .form-group select:focus + label,
            .form-group select:valid + label,
            .form-group textarea:focus + label,
            .form-group textarea:not(:placeholder-shown) + label {
                top: -0.6rem;
                font-size: 0.7rem;
                color: var(--gold);
                letter-spacing: 1px;
                text-transform: uppercase;
            }

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.4s ease;
}

.form-group input:focus ~ .form-line,
.form-group select:focus ~ .form-line,
.form-group textarea:focus ~ .form-line {
    width: 100%;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Form Success */
.form-success {
    display: none;
    text-align: center;
    padding: 3rem 0;
}

    .form-success.show {
        display: block;
        animation: fadeInUp 0.5s ease;
    }

.success-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(74, 222, 128, 0.15);
    color: #4ade80;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--text-secondary);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
    padding: 3rem 0;
    position: relative;
    z-index: 2;
}

.footer-content {
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

    .footer-brand .logo-icon {
        font-size: 1.2rem;
    }

    .footer-brand .logo-text {
        font-family: 'Vrindals Script', cursive;
        font-size: 1.4rem;
        font-weight: 400;
        color: var(--text-primary);
    }

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.footer-line {
    width: 60px;
    height: 1px;
    background: var(--glass-border);
    margin: 0 auto 1.5rem;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .footer-bottom p {
        font-size: 0.8rem;
        color: var(--text-muted);
    }

.back-to-top {
    width: 40px;
    height: 40px;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 1.1rem;
    transition: all 0.3s;
}

    .back-to-top:hover {
        background: var(--gold);
        border-color: var(--gold);
        color: var(--bg-primary);
        transform: translateY(-3px);
    }

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 0.5rem;
        transition: right 0.4s ease;
        border-left: 1px solid var(--glass-border);
    }

        .nav-links.open {
            right: 0;
        }

    .menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }

    .sobre-content,
    .contato-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .galeria-track {
        animation-duration: 30s;
    }

    .drink-card {
        width: 280px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cursor-dot, .cursor-ring {
        display: none;
    }

    body {
        cursor: auto;
    }

    .btn, .magnetic, a {
        cursor: pointer;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 600px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .servicos-grid,
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .experience-badge {
        right: 10px;
        bottom: -10px;
    }

    .marquee-track span {
        font-size: 0.75rem;
    }
}
