:root{
--primary:#ea6848;
--secondary:#fef097;
--accent:#fdf096;
--bg:#fdf6ed;
--text:#0c5b94;
--glass:rgba(255,255,255,.08);
--whatsapp:#0c5b94;
--shadow:#b7e1cd;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:Poppins,sans-serif;
background:var(--bg);
color:var(--text);
overflow-x:hidden;
}

/* CURSOR */

@media(min-width:769px){
body{
cursor:none;
}
}

.cursor{
position:fixed;
width:45px;
height:45px;
pointer-events:none;
z-index:999999;
background:url('../imagens/cursor.png') center/contain no-repeat;
transform:translate(-50%,-50%);
}

/* AGE GATE */

.age-gate{
position:fixed;
inset:0;
z-index:99999999;
background:
linear-gradient(
135deg,
rgba(12,91,148,.92),
rgba(234,104,72,.92)
);
display:flex;
align-items:center;
justify-content:center;
padding:30px;
transition:.6s;
}

.age-gate.hidden{
opacity:0;
pointer-events:none;
}

.age-box{
width:100%;
max-width:560px;
background:rgba(255,255,255,.12);
backdrop-filter:blur(18px);
border-radius:36px;
padding:60px 40px;
text-align:center;
color:#fff;
border:1px solid rgba(255,255,255,.12);
box-shadow:0 30px 80px rgba(0,0,0,.18);
}

.age-box img{
width:130px;
margin-bottom:26px;
}

.age-box h1{
font-family:Anton;
font-size:56px;
line-height:1;
margin-bottom:20px;
}

.age-box p{
font-size:18px;
line-height:1.7;
opacity:.92;
margin-bottom:35px;
}

.age-actions{
display:flex;
justify-content:center;
gap:18px;
flex-wrap:wrap;
}

.age-btn{
padding:16px 34px;
border:none;
border-radius:60px;
font-weight:700;
font-size:16px;
cursor:pointer;
transition:.35s;
}

.age-yes{
background:#fff;
color:var(--primary);
}

.age-no{
background:rgba(255,255,255,.12);
color:#fff;
border:1px solid rgba(255,255,255,.2);
}

.age-btn:hover{
transform:translateY(-4px) scale(1.03);
}

/* HEADER */

header{
position:fixed;
top:0;
left:0;
width:100%;
height:78px;
padding:0 4%;
display:flex;
justify-content:space-between;
align-items:center;
z-index:99999;

background:linear-gradient(
135deg,
rgba(234,104,72,.72),
rgba(247,172,104,.40)
);

backdrop-filter:blur(14px);
border-bottom:1px solid rgba(255,255,255,.08);
}

.header-left{
display:flex;
align-items:center;
gap:42px;
}

.header-logo img{
height:115px;
width:auto;
object-fit:contain;
display:block;
}

nav{
display:flex;
gap:28px;
}

nav a{
color:#fff;
text-decoration:none;
font-weight:500;
position:relative;
font-size:15px;
}

nav a::after{
content:'';
position:absolute;
left:0;
bottom:-6px;
width:0;
height:2px;
background:#fff;
transition:.35s;
}

nav a:hover::after{
width:100%;
}

/* RIGHT SIDE */

.header-right{
display:flex;
align-items:center;
gap:14px;
margin-left:auto;
}

/* SOCIAL */

.header-social{
display:flex;
align-items:center;
gap:10px;
}

.header-social a{
width:42px;
height:42px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
background:rgba(255,255,255,.14);
color:#fff;
text-decoration:none;
font-size:16px;
transition:.35s;
backdrop-filter:blur(10px);
}

.header-social a:hover{
transform:translateY(-4px);
background:rgba(255,255,255,.22);
}

/* MENU BUTTON */

.menu-toggle{
display:none;
width:42px;
height:42px;
border:none;
border-radius:50%;
background:rgba(255,255,255,.14);
backdrop-filter:blur(10px);
color:#fff;
cursor:pointer;
transition:.35s;
align-items:center;
justify-content:center;
position:relative;
z-index:1000000;
}

.menu-toggle:hover{
background:rgba(255,255,255,.22);
transform:translateY(-3px);
}

.menu-toggle i{
font-size:18px;
pointer-events:none;
}

/* MOBILE */

@media(max-width:768px){

header{
height:74px;
padding:0 16px;
}

.header-left{
gap:0;
}

.header-logo img{
height:92px;
}

nav{
position:fixed;
top:88px;
right:16px;
width:240px;

background:rgba(255,255,255,.14);
backdrop-filter:blur(18px);

border:1px solid rgba(255,255,255,.12);
border-radius:24px;

padding:22px;

display:flex;
flex-direction:column;
gap:18px;

opacity:0;
pointer-events:none;
transform:translateY(-10px);

transition:.35s;
box-shadow:0 20px 60px rgba(0,0,0,.18);
}

nav.active{
opacity:1;
pointer-events:auto;
transform:translateY(0);
}

nav a{
font-size:16px;
padding-bottom:10px;
border-bottom:1px solid rgba(255,255,255,.08);
}

.header-right{
gap:12px;
}

.header-social{
gap:8px;
}

.header-social a{
width:38px;
height:38px;
font-size:14px;
flex-shrink:0;
}

.menu-toggle{
display:flex;
}

}

/* MENU OVERLAY */

.mobile-menu{
position:fixed;
inset:0;

background:
linear-gradient(
135deg,
rgba(12,91,148,.96),
rgba(234,104,72,.92)
);

backdrop-filter:blur(24px);

display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
gap:28px;

z-index:999999;

opacity:0;
pointer-events:none;

transition:
opacity .45s ease,
transform .45s ease;

transform:scale(1.04);
}

/* ACTIVE */

.mobile-menu.active{
opacity:1;
pointer-events:auto;
transform:scale(1);
}

/* LINKS */

.mobile-menu a{
color:#fff;
text-decoration:none;
font-family:Anton;
font-size:44px;
letter-spacing:.5px;
position:relative;
transition:.35s;
}

.mobile-menu a:hover{
transform:translateY(-3px) scale(1.04);
opacity:.88;
}

/* SOCIAL INSIDE MENU */

.mobile-menu-social{
display:flex;
gap:16px;
margin-top:10px;
}

.mobile-menu-social a{
width:48px;
height:48px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;

background:rgba(255,255,255,.14);

font-size:20px;
}

.mobile-menu-social a:hover{
background:rgba(255,255,255,.24);
}

/* HERO */

.hero{
height:100vh;
position:relative;
display:flex;
align-items:center;
padding:0 8%;
overflow:hidden;
}

.hero video{
position:absolute;
inset:0;
width:100%;
height:100%;
object-fit:cover;
z-index:-3;
transform:scale(1.05);
}

.hero::before{
content:'';
position:absolute;
inset:0;
background:linear-gradient(
to bottom,
rgba(0,0,0,.25),
rgba(0,0,0,.70)
);
z-index:-2;
}

.hero-layer{
position:relative;
z-index:2;
max-width:760px;
}

.hero h1{
font-family:Anton,sans-serif;
font-size:84px;
line-height:1;
color:#fff;
margin-bottom:26px;
}

.hero h1 span{
display:inline-block;
opacity:0;
transform:translateY(80px);
}

.hero-sub{
font-size:20px;
line-height:1.7;
color:#fff;
max-width:620px;
opacity:0;
transform:translateY(40px);
}

/* BUTTON */

.btn{
display:inline-flex;
align-items:center;
justify-content:center;
padding:18px 34px;
border-radius:60px;
text-decoration:none;
font-weight:700;
margin-top:38px;
transition:.4s;
border:none;
position:relative;
z-index:10;
}

.btn-whatsapp{
background:var(--whatsapp);
color:#fff;
box-shadow:
0 12px 34px rgba(183,225,205,.45);
}

.btn-whatsapp:hover{
transform:translateY(-4px) scale(1.03);
}

/* SECTIONS */

.section{
padding:120px 8%;
opacity:0;
transform:translateY(80px);
}

.section-title{
font-family:Anton;
font-size:54px;
margin-bottom:18px;
color:var(--primary);
}

.section-sub{
font-size:18px;
opacity:.75;
margin-bottom:50px;
line-height:1.7;
}

/* DRINKS */

.drinks{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

.drink{
position:relative;
height:420px;
overflow:hidden;
border-radius:28px;
text-decoration:none;
color:#fff;
opacity:0;
box-shadow:0 25px 50px rgba(0,0,0,.12);
}

.drink-left{
transform:translateX(-120px) scale(.95);
}

.drink-right{
transform:translateX(120px) scale(.95);
}

.drink img{
width:100%;
height:100%;
object-fit:cover;
transition:1s;
}

.drink:hover img{
transform:scale(1.12);
}

.drink::after{
content:'';
position:absolute;
inset:0;
background:linear-gradient(
to top,
rgba(0,0,0,.78),
transparent 55%
);
}

.drink-content{
position:absolute;
left:30px;
bottom:28px;
z-index:2;
}

.drink-content h3{
font-family:Anton;
font-size:38px;
margin-bottom:8px;
}

.drink-content p{
font-size:15px;
opacity:.88;
}

/* EVENTOS */

.marquee{
overflow:hidden;
width:100%;
margin-top:25px;
}

.track{
display:flex;
gap:20px;
width:max-content;
will-change:transform;
}

.track img,
.track video{
width:430px;
height:290px;
object-fit:cover;
border-radius:24px;
flex-shrink:0;
}

/* CTA */

.conversion{
padding:85px;
border-radius:40px;

background:linear-gradient(
135deg,
var(--primary),
var(--accent)
);

text-align:center;
color:#fff;

box-shadow:
0 30px 70px rgba(234,104,72,.22);
}

.conversion h1{
font-family:Anton;
font-size:58px;
line-height:1.05;
margin-bottom:22px;
}

.conversion p{
font-size:20px;
opacity:.95;
}

/* TABELA */

.pricing-wrap{
overflow:auto;
border-radius:26px;
background:#fff;
box-shadow:0 20px 60px rgba(0,0,0,.08);
}

table{
width:100%;
border-collapse:collapse;
min-width:700px;
}

th{
background:var(--primary);
color:#fff;
padding:24px;
font-size:18px;
}

td{
padding:22px;
text-align:center;
font-size:17px;
border-bottom:1px solid rgba(0,0,0,.05);
}

tr:hover{
background:#fff8f3;
}

/* FOOTER */

footer{
background:#fff;
padding:70px 8% 30px;
border-top:1px solid rgba(0,0,0,.06);
margin-top:80px;
}

.footer-top{
display:grid;
grid-template-columns:1.4fr 1fr 1fr;
gap:60px;
padding-bottom:40px;
border-bottom:1px solid rgba(0,0,0,.08);
}

.footer-brand img{
width:240px;
max-width:100%;
margin-bottom:20px;
}

.footer-brand p{
font-size:15px;
line-height:1.8;
opacity:.75;
max-width:360px;
}

.footer-col h4{
font-family:Anton;
font-size:26px;
margin-bottom:18px;
color:var(--primary);
}

.footer-col a,
.footer-col p{
display:block;
margin-bottom:14px;
text-decoration:none;
color:var(--text);
font-size:15px;
line-height:1.6;
transition:.3s;
}

.footer-col a:hover{
transform:translateX(4px);
}

.footer-bottom{
padding-top:28px;
display:flex;
justify-content:space-between;
align-items:center;
gap:20px;
flex-wrap:wrap;
}

.footer-bottom p{
font-size:14px;
opacity:.72;
}

/* TRANSITION */

.transition{
position:fixed;
inset:0;
background:var(--primary);
z-index:999999;
transform:translateY(100%);
transition:.7s cubic-bezier(.77,0,.18,1);

display:flex;
align-items:center;
justify-content:center;
}

.transition img{
width:220px;
opacity:.95;
animation:pulseLogo 1.6s infinite ease-in-out;
}

.transition.active{
transform:translateY(0);
}

@keyframes pulseLogo{
0%{
transform:scale(1);
}
50%{
transform:scale(1.08);
}
100%{
transform:scale(1);
}
}

/* MOBILE */

@media(max-width:768px){

.cursor{
display:none;
}

.desktop-nav{
display:none;
}

.menu-toggle{
display:flex;
align-items:center;
justify-content:center;
}

.header-social{
margin-left:auto;
gap:8px;
}

.header-social a,
.menu-toggle{
width:36px;
height:36px;
}

/* HEADER */

header{
height:72px;
padding:0 14px;
display:flex;
justify-content:space-between;
align-items:center;
overflow:hidden;
}

.header-left{
display:flex;
align-items:center;
gap:14px;
min-width:0;
flex:1;
}

.header-logo img{
height:92px;
width:auto;
display:block;
flex-shrink:0;
}

/* MENU MOBILE */

nav{
display:none;
}

.menu-toggle{
display:flex;
align-items:center;
justify-content:center;
}

.header-social{
margin-left:auto;
gap:8px;
}

.header-social a,
.menu-toggle{
width:36px;
height:36px;
}

/* SOCIAL MOBILE */

.header-social{
display:flex;
gap:8px;
align-items:center;
margin-left:10px;
flex-shrink:0;
}

.header-social a{
width:36px;
height:36px;
flex-shrink:0;
}

.header-social img{
width:16px;
height:16px;
display:block;
object-fit:contain;
filter:none;
}

/* HERO */

.hero{
padding:0 20px;
}

.hero-layer{
max-width:100%;
}

.hero h1{
font-size:52px;
}

.hero-sub{
font-size:17px;
}

/* SECTIONS */

.section{
padding:90px 20px;
}

.section-title{
font-size:42px;
}

/* DRINKS */

.drink{
height:340px;
}

/* EVENTOS */

.track img,
.track video{
width:280px;
height:200px;
}

/* CTA */

.conversion{
padding:55px 25px;
}

.conversion h1{
font-size:42px;
}

/* FOOTER */

.footer-top{
grid-template-columns:1fr;
gap:30px;
}

.footer-brand{
grid-column:auto;
}

.footer-brand img{
width:200px;
}

.footer-bottom{
flex-direction:column;
align-items:flex-start;
}

/* AGE GATE */

.age-box{
padding:46px 26px;
}

.age-box h1{
font-size:42px;
}

}