:root {
    --bg-dark: #080808;
    --bg-surface: #121212;
    --bg-warm: #1a150e;
    --primary: #E1B12C; /* Gold/Warm Beer color */
    --primary-hover: #C59820;
    --text-main: #FFFFFF;
    --text-dim: #A0A0A0;
    --accent: #FFD700;
    --whatsapp: #25D366;
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.inner-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.highlight {
    color: var(--primary);
}

.bg-warm {
    background-color: var(--bg-warm);
}

/* --- 18+ Banner --- */
.age-banner {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 8px 0;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 1001;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- age modal --- */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.age-modal.hidden {
    opacity: 0;
    pointer-events: none;
}

.age-modal-content {
    max-width: 450px;
    width: 90%;
    background: var(--bg-surface);
    padding: 50px;
    border-radius: 40px;
    text-align: center;
    border: 1px solid rgba(225, 177, 44, 0.2);
    box-shadow: 0 50px 100px rgba(0,0,0,0.8);
}

.age-modal-content h2 {
    font-size: 1.8rem;
    margin: 25px 0 15px;
}

.age-modal-content p {
    color: var(--text-dim);
    margin-bottom: 30px;
}

.age-modal-btns {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.conar-modal {
    margin-top: 30px;
    font-size: 0.7rem;
    letter-spacing: 1px;
    opacity: 0.5;
}

/* --- Buttons --- */
.btn-primary, .btn-whatsapp-large, .btn-whatsapp-small, .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s var(--transition);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary);
    color: #000;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(225, 177, 44, 0.3);
}

.btn-whatsapp-large {
    background-color: var(--whatsapp);
    color: #fff;
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-whatsapp-large:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-small {
    background-color: rgba(37, 211, 102, 0.1);
    color: var(--whatsapp);
    border: 1px solid var(--whatsapp);
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-whatsapp-small:hover {
    background-color: var(--whatsapp);
    color: #fff;
}

.btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: #000;
}

.link-specialist {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.link-specialist:hover i {
    transform: translateX(5px);
}

.link-specialist i {
    transition: transform 0.3s ease;
}

/* --- Header --- */
.main-header {
    position: fixed;
    top: 35px; /* Offset for 18+ banner */
    width: 100%;
    z-index: 1000;
    background: rgba(8, 8, 8, 0.85);
    backdrop-filter: blur(15px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 2px;
}

.brand-el {
    color: var(--text-main);
}

.brand-delivery {
    color: var(--primary);
}

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

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(8,8,8,1) 0%, rgba(8,8,8,0.4) 50%, rgba(8,8,8,0.7) 100%);
}

.hero-content {
    max-width: 850px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.hero h1 span {
    font-weight: 300;
    font-size: 3rem;
    display: block;
    color: var(--text-dim);
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-dim);
    margin-bottom: 40px;
    max-width: 650px;
}

/* --- How it Works --- */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-dim);
    font-size: 1.1rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.step-card {
    background: var(--bg-surface);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s var(--transition);
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.image-wrapper {
    height: 280px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.step-card:hover .image-wrapper img {
    transform: scale(1.08);
}

.step-info {
    padding: 35px;
    position: relative;
}

.step-num {
    position: absolute;
    top: -25px;
    right: 30px;
    font-size: 5rem;
    font-weight: 800;
    color: rgba(225, 177, 44, 0.08);
    pointer-events: none;
}

.step-info h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.step-info p {
    color: var(--text-dim);
    font-size: 1rem;
    line-height: 1.5;
}

/* --- About --- */
.split-layout {
    display: flex;
    align-items: center;
    gap: 80px;
}

.content-side {
    flex: 1.2;
}

.content-side h2 {
    font-size: 3.2rem;
    margin-bottom: 30px;
}

.content-side p {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 35px;
}

.features-list {
    list-style: none;
    margin-bottom: 40px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 1.15rem;
}

.features-list i {
    color: var(--primary);
    font-size: 1.3rem;
}

.image-side {
    flex: 1;
}

.image-side img {
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

/* --- Beer Types --- */
.beer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.beer-card {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 28px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.beer-image {
    width: 45%;
}

.beer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.beer-content {
    padding: 40px;
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.beer-content h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

/* --- NEW Proof Section --- */
.proof-section-new {
    background-color: #0c0c0c;
}

.proof-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.proof-text {
    flex: 1;
}

.proof-text h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.proof-text p {
    font-size: 1.15rem;
    color: var(--text-dim);
    margin-bottom: 40px;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.badge-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.badge-item i {
    font-size: 1.8rem;
    color: var(--primary);
    background: rgba(225, 177, 44, 0.1);
    padding: 15px;
    border-radius: 15px;
}

.badge-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.badge-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.proof-visual {
    flex: 1.2;
}

.main-proof-img {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0,0,0,0.7);
}

.main-proof-img img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.proof-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

.proof-overlay-text span {
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.9rem;
}

.proof-overlay-text p {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 5px;
}

/* --- Differential --- */
.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 80px;
}

.diff-item i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 25px;
    display: block;
}

.diff-item h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.diff-item p {
    color: var(--text-dim);
    font-size: 1.05rem;
}

/* --- Final CTA --- */
.final-cta {
    position: relative;
    padding: 150px 0;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    text-align: center;
}

.cta-box {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.85);
    padding: 80px 60px;
    border-radius: 40px;
    backdrop-filter: blur(25px);
    border: 1px solid rgba(225, 177, 44, 0.2);
    box-shadow: 0 50px 100px rgba(0,0,0,0.8);
}

.cta-box h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
}

.cta-box p {
    margin-bottom: 45px;
    font-size: 1.25rem;
    color: var(--text-dim);
}

/* --- Footer --- */
.main-footer {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 50px;
}

.conar-footer {
    margin-top: 25px;
    font-size: 0.8rem;
    color: var(--text-dim);
    letter-spacing: 1.5px;
    max-width: 600px;
    line-height: 1.8;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dim);
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

.social-links {
    display: flex;
    gap: 25px;
}

.social-links a {
    color: var(--text-dim);
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary);
    transform: scale(1.1);
}

/* --- Animations --- */
.reveal, .reveal-left, .reveal-right {
    opacity: 0;
    transition: all 1s var(--transition);
}

.reveal { transform: translateY(50px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

.active {
    opacity: 1;
    transform: translate(0, 0);
}

.fade-in { animation: fadeInUp 1s forwards; }
.fade-in-delay { animation: fadeInUp 1s 0.4s forwards; opacity: 0; }
.fade-in-delay-2 { animation: fadeInUp 1s 0.8s forwards; opacity: 0; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Responsiveness --- */
@media (max-width: 1024px) {
    .split-layout, .proof-layout { flex-direction: column; text-align: center; }
    .hero h1 { font-size: 3.2rem; }
    .hero h1 span { font-size: 2.2rem; }
    .beer-grid { grid-template-columns: 1fr; }
    .proof-visual { width: 100%; order: -1; margin-bottom: 40px; }
    .main-proof-img img { height: 450px; }
}

@media (max-width: 768px) {
    .inner-padding { padding: 60px 0; }
    .main-header { top: 32px; }
    .hero h1 { font-size: 2.5rem; }
    .hero h1 span { font-size: 1.8rem; }
    .hero p { font-size: 1.1rem; }
    .cta-box { padding: 40px 20px; }
    .cta-box h2 { font-size: 2.2rem; }
    .diff-grid { grid-template-columns: 1fr; }
    .beer-card { flex-direction: column; }
    .beer-image, .beer-content { width: 100%; }
    .footer-bottom { flex-direction: column; gap: 30px; text-align: center; }
}
