/* ================================================================
   LANDING PAGE - CASA BRAVOS · Mezcal Artesanal
   Paleta basada en catálogo oficial: dorado-mostaza + verde sage
   ================================================================ */

:root {
    /* Paleta marca */
    --cb-gold:        #A88B3D;
    --cb-gold-dark:   #8A6E2A;
    --cb-gold-light:  #C2A24F;
    --cb-sage:        #7BAE9C;
    --cb-sage-dark:   #5E907E;
    --cb-sage-light:  #A2C8BA;
    --cb-cream:       #EDE6D3;
    --cb-cream-soft:  #F5F0E0;
    --cb-cream-dark:  #D8CDB0;
    --cb-wood:        #3E2A18;
    --cb-wood-soft:   #5A3F26;
    --cb-charcoal:    #1F1810;
    --cb-text:        #2C2114;
    --cb-text-soft:   #6B5E50;
    --cb-white:       #FFFFFF;

    /* Spacing */
    --section-padding: 6rem 0;
    --container-max: 1200px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--cb-text);
    overflow-x: hidden;
    background: var(--cb-cream-soft);
    line-height: 1.6;
}

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

a { text-decoration: none; color: inherit; }

/* ========== NAVBAR ========== */
.cb-navbar {
    background: rgba(31, 24, 16, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.875rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(168, 139, 61, 0.18);
}

.cb-navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(31, 24, 16, 0.98);
    box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

.cb-nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cb-brand {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--cb-cream);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.cb-brand img {
    height: 44px;
    width: auto;
}

.cb-nav-links {
    display: flex;
    gap: 1.75rem;
    list-style: none;
    align-items: center;
}

.cb-nav-links a {
    color: rgba(237, 230, 211, 0.85);
    font-size: 0.825rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: color 0.2s ease;
    padding: 0.4rem 0;
    position: relative;
}

.cb-nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--cb-gold);
    transition: width 0.25s ease;
}

.cb-nav-links a:hover { color: var(--cb-gold-light); }
.cb-nav-links a:hover::after { width: 100%; }

.cb-btn-login {
    background: var(--cb-gold);
    color: var(--cb-charcoal) !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.78rem !important;
    transition: all 0.2s ease;
    border: 1px solid var(--cb-gold);
}

.cb-btn-login:hover {
    background: transparent;
    color: var(--cb-gold) !important;
}
.cb-btn-login::after { display: none !important; }

.cb-burger {
    display: none;
    background: none;
    border: none;
    color: var(--cb-cream);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ========== HERO ========== */
.cb-hero {
    min-height: 100vh;
    background:
        linear-gradient(rgba(31, 24, 16, 0.55), rgba(31, 24, 16, 0.75)),
        url('/images/landing/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--cb-cream);
    padding: 8rem 1.5rem 4rem;
    position: relative;
}

.cb-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--cb-cream-soft));
    z-index: 1;
}

.cb-hero-content {
    max-width: 900px;
    z-index: 2;
    position: relative;
}

.cb-hero-logo {
    width: 140px;
    height: auto;
    margin: 0 auto 2rem;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
    animation: fadeInDown 0.9s ease;
}

.cb-hero-quote {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--cb-gold-light);
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 16px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease 0.2s backwards;
}

.cb-hero-quote-author {
    font-size: 1rem;
    color: var(--cb-sage-light);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.cb-hero-tagline {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: rgba(237, 230, 211, 0.92);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.cb-hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s backwards;
}

.cb-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.875rem;
    transition: all 0.25s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.cb-btn-primary {
    background: var(--cb-gold);
    color: var(--cb-charcoal);
    border-color: var(--cb-gold);
}

.cb-btn-primary:hover {
    background: var(--cb-gold-light);
    border-color: var(--cb-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 139, 61, 0.4);
}

.cb-btn-outline {
    background: transparent;
    color: var(--cb-cream);
    border-color: var(--cb-cream);
}

.cb-btn-outline:hover {
    background: var(--cb-cream);
    color: var(--cb-charcoal);
}

.cb-btn-sage {
    background: var(--cb-sage);
    color: var(--cb-white);
    border-color: var(--cb-sage);
}

.cb-btn-sage:hover {
    background: var(--cb-sage-dark);
    border-color: var(--cb-sage-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123, 174, 156, 0.35);
}

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

/* ========== SECCIONES BASE ========== */
.cb-section {
    padding: var(--section-padding);
    position: relative;
}

.cb-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.cb-section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 4rem;
}

.cb-eyebrow {
    color: var(--cb-gold);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.cb-eyebrow::before,
.cb-eyebrow::after {
    content: '—';
    margin: 0 0.6rem;
    color: var(--cb-gold);
}

.cb-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--cb-wood);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.cb-section-title .accent { color: var(--cb-gold); }
.cb-section-title .sage { color: var(--cb-sage-dark); }

.cb-section-desc {
    color: var(--cb-text-soft);
    font-size: 1.05rem;
    line-height: 1.75;
}

.cb-section--cream { background: var(--cb-cream); }
.cb-section--dark {
    background: var(--cb-wood);
    color: var(--cb-cream);
}
.cb-section--dark .cb-section-title { color: var(--cb-cream); }
.cb-section--dark .cb-section-desc { color: rgba(237, 230, 211, 0.85); }

/* ========== NOSOTROS ========== */
.cb-nosotros-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cb-nosotros-img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(62, 42, 24, 0.18);
    aspect-ratio: 4 / 5;
}

.cb-nosotros-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cb-nosotros-text h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    color: var(--cb-wood);
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

.cb-nosotros-text h3 em {
    color: var(--cb-gold);
    font-style: normal;
}

.cb-nosotros-text p {
    color: var(--cb-text-soft);
    margin-bottom: 1.125rem;
    line-height: 1.8;
}

.cb-nosotros-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--cb-cream-dark);
}

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

.cb-stat-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--cb-gold);
    line-height: 1;
    display: block;
    margin-bottom: 0.25rem;
}

.cb-stat-label {
    font-size: 0.78rem;
    color: var(--cb-text-soft);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* ========== MEZCALES (CRISTALINOS) ========== */
.cb-mezcales-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.cb-mezcal-card {
    background: var(--cb-cream-soft);
    border: 1px solid var(--cb-cream-dark);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cb-mezcal-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(62, 42, 24, 0.18);
    border-color: var(--cb-gold);
}

.cb-mezcal-img {
    background: var(--cb-cream);
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
}

.cb-mezcal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.cb-mezcal-card:hover .cb-mezcal-img img {
    transform: scale(1.05);
}

.cb-mezcal-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--cb-charcoal);
    color: var(--cb-cream);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.4rem 0.875rem;
    border-radius: 2px;
}

.cb-mezcal-body {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cb-mezcal-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    color: var(--cb-wood);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.cb-mezcal-desc {
    color: var(--cb-text-soft);
    font-size: 0.925rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex: 1;
}

.cb-mezcal-meta {
    display: flex;
    gap: 1.25rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--cb-cream-dark);
    margin-bottom: 1rem;
}

.cb-mezcal-meta-item {
    flex: 1;
}

.cb-mezcal-meta-label {
    font-size: 0.68rem;
    color: var(--cb-text-soft);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    display: block;
    margin-bottom: 0.2rem;
}

.cb-mezcal-meta-value {
    font-weight: 700;
    color: var(--cb-wood);
    font-size: 0.95rem;
}

.cb-mezcal-prices {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--cb-cream-dark);
}

.cb-mezcal-price {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: var(--cb-gold);
    font-weight: 700;
}

.cb-mezcal-price small {
    font-size: 0.7rem;
    color: var(--cb-text-soft);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    display: block;
    margin-top: -0.15rem;
}

.cb-mezcal-price-sm {
    text-align: right;
    color: var(--cb-text-soft);
    font-size: 0.85rem;
}

.cb-mezcal-price-sm strong {
    color: var(--cb-wood);
    font-weight: 700;
}

/* ========== SENTIDOS (sabores) ========== */
.cb-sentidos-banner {
    background: var(--cb-cream-soft);
    border-radius: 8px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    border: 1px solid var(--cb-cream-dark);
}

.cb-sentidos-banner img {
    border-radius: 6px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    width: 100%;
}

.cb-sentidos-banner h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    color: var(--cb-wood);
    margin-bottom: 1rem;
}

.cb-sentidos-banner p {
    color: var(--cb-text-soft);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.cb-sentidos-banner .cb-price-tag {
    display: inline-flex;
    align-items: baseline;
    gap: 0.5rem;
    background: var(--cb-gold);
    color: var(--cb-charcoal);
    padding: 0.625rem 1.25rem;
    border-radius: 4px;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    margin-top: 0.5rem;
}

.cb-sentidos-banner .cb-price-tag .num {
    font-size: 1.5rem;
}

.cb-sabores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
}

.cb-sabor-card {
    background: var(--cb-cream-soft);
    border: 1px solid var(--cb-cream-dark);
    border-radius: 6px;
    padding: 1.25rem 1.25rem 1.25rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s ease;
    border-left: 3px solid var(--cb-sage);
}

.cb-sabor-card:hover {
    transform: translateX(4px);
    border-left-color: var(--cb-gold);
    background: var(--cb-white);
    box-shadow: 0 6px 20px rgba(62, 42, 24, 0.1);
}

.cb-sabor-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--cb-sage);
    color: var(--cb-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.cb-sabor-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--cb-wood);
    line-height: 1.2;
    margin-bottom: 0.15rem;
}

.cb-sabor-info {
    font-size: 0.75rem;
    color: var(--cb-text-soft);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== KITS ESPECIALES ========== */
.cb-kits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.cb-kit-card {
    background: var(--cb-cream);
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--cb-gold);
    position: relative;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.cb-kit-ribbon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--cb-charcoal);
    color: var(--cb-gold);
    padding: 0.4rem 0.875rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 2px;
}

.cb-kit-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    color: var(--cb-wood);
    line-height: 1.1;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.cb-kit-name .small { display: block; font-size: 1rem; color: var(--cb-gold); }

.cb-kit-price {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.25rem;
    color: var(--cb-gold);
    font-weight: 700;
    margin: 0.5rem 0 1rem;
}

.cb-kit-includes {
    list-style: none;
    margin-bottom: 1.25rem;
    flex: 1;
}

.cb-kit-includes li {
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--cb-cream-dark);
    color: var(--cb-text-soft);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.cb-kit-includes li i {
    color: var(--cb-sage);
    font-size: 0.875rem;
}

.cb-kit-note {
    background: var(--cb-cream-soft);
    border-radius: 4px;
    padding: 0.625rem 0.875rem;
    font-size: 0.78rem;
    color: var(--cb-text-soft);
    text-align: center;
    border-left: 3px solid var(--cb-gold);
}

/* ========== SALES ARTESANALES ========== */
.cb-sales-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.cb-sal-card {
    background: var(--cb-cream-soft);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid var(--cb-cream-dark);
    transition: all 0.25s ease;
}

.cb-sal-card:hover {
    transform: translateY(-4px);
    border-color: var(--cb-gold);
    box-shadow: 0 12px 30px rgba(62, 42, 24, 0.12);
}

.cb-sal-jar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--cb-charcoal);
    color: var(--cb-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    border: 3px solid var(--cb-gold);
}

.cb-sal-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    color: var(--cb-wood);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.cb-sal-desc {
    font-size: 0.85rem;
    color: var(--cb-text-soft);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.cb-sal-price {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: var(--cb-gold);
    font-weight: 700;
}

.cb-sal-price small { font-size: 0.7rem; color: var(--cb-text-soft); display: block; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

.cb-sales-kit {
    background: var(--cb-charcoal);
    color: var(--cb-cream);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cb-sales-kit-text {
    text-align: left;
}

.cb-sales-kit-title {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--cb-gold);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.cb-sales-kit-desc {
    color: rgba(237, 230, 211, 0.85);
    font-size: 0.9rem;
}

.cb-sales-kit-price {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    color: var(--cb-gold-light);
    font-weight: 700;
}

/* ========== PROCESO ========== */
.cb-proceso-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.cb-proceso-step {
    text-align: center;
    padding: 1.5rem;
    background: rgba(237, 230, 211, 0.06);
    border-radius: 8px;
    border: 1px solid rgba(168, 139, 61, 0.2);
    transition: all 0.25s ease;
}

.cb-proceso-step:hover {
    border-color: var(--cb-gold);
    background: rgba(237, 230, 211, 0.1);
    transform: translateY(-4px);
}

.cb-proceso-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--cb-gold);
    color: var(--cb-charcoal);
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.cb-proceso-step h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    color: var(--cb-cream);
    margin-bottom: 0.625rem;
    font-weight: 700;
}

.cb-proceso-step p {
    font-size: 0.875rem;
    color: rgba(237, 230, 211, 0.78);
    line-height: 1.6;
}

/* ========== EXPERIENCIA / SERVICIOS ========== */
.cb-servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.cb-servicio-card {
    background: var(--cb-cream-soft);
    border-radius: 8px;
    padding: 2rem 1.75rem;
    border: 1px solid var(--cb-cream-dark);
    transition: all 0.25s ease;
    text-align: center;
}

.cb-servicio-card:hover {
    transform: translateY(-4px);
    border-color: var(--cb-sage);
    box-shadow: 0 12px 30px rgba(62, 42, 24, 0.12);
}

.cb-servicio-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--cb-sage);
    color: var(--cb-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cb-servicio-card h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    color: var(--cb-wood);
    margin-bottom: 0.625rem;
    font-weight: 700;
}

.cb-servicio-card p {
    font-size: 0.9rem;
    color: var(--cb-text-soft);
    line-height: 1.6;
}

/* ========== PUNTOS DE VENTA ========== */
.cb-puntos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.cb-punto-card {
    background: var(--cb-charcoal);
    color: var(--cb-cream);
    border-radius: 8px;
    padding: 1.75rem;
    border: 1px solid rgba(168, 139, 61, 0.3);
    position: relative;
}

.cb-punto-icon {
    color: var(--cb-gold);
    font-size: 1.5rem;
    margin-bottom: 0.875rem;
}

.cb-punto-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    color: var(--cb-gold-light);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.cb-punto-location {
    font-size: 0.875rem;
    color: rgba(237, 230, 211, 0.85);
    margin-bottom: 0.5rem;
}

.cb-punto-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--cb-sage-light);
    font-weight: 600;
}

/* ========== CONTACTO / CTA ========== */
.cb-contacto {
    background:
        linear-gradient(rgba(31, 24, 16, 0.92), rgba(31, 24, 16, 0.92)),
        url('/images/landing/agave2.jpg') center/cover no-repeat;
    color: var(--cb-cream);
    text-align: center;
}

.cb-contacto .cb-section-title { color: var(--cb-cream); }

.cb-contacto-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin: 3rem auto 2rem;
    max-width: 900px;
}

.cb-contacto-item {
    text-align: center;
}

.cb-contacto-item i {
    font-size: 2rem;
    color: var(--cb-gold);
    margin-bottom: 0.625rem;
    display: block;
}

.cb-contacto-item h5 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--cb-sage-light);
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.cb-contacto-item a,
.cb-contacto-item p {
    color: var(--cb-cream);
    font-size: 1rem;
    transition: color 0.2s ease;
}

.cb-contacto-item a:hover {
    color: var(--cb-gold-light);
}

.cb-hashtag {
    display: inline-block;
    margin-top: 2rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: var(--cb-gold);
    font-weight: 700;
    letter-spacing: 2px;
}

/* ========== FOOTER ========== */
.cb-footer {
    background: var(--cb-charcoal);
    color: rgba(237, 230, 211, 0.7);
    padding: 3rem 0 1.5rem;
    text-align: center;
}

.cb-footer-logo {
    height: 60px;
    margin: 0 auto 1.25rem;
    opacity: 0.95;
}

.cb-footer-text {
    max-width: 520px;
    margin: 0 auto 1.5rem;
    font-size: 0.875rem;
    line-height: 1.7;
}

.cb-footer-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.cb-footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(168, 139, 61, 0.4);
    color: var(--cb-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.cb-footer-social a:hover {
    background: var(--cb-gold);
    color: var(--cb-charcoal);
    transform: translateY(-2px);
}

.cb-footer-bottom {
    border-top: 1px solid rgba(168, 139, 61, 0.2);
    padding-top: 1.25rem;
    font-size: 0.78rem;
    color: rgba(237, 230, 211, 0.5);
}

.cb-footer-bottom a {
    color: var(--cb-gold);
    text-decoration: none;
}

.cb-disclaimer {
    background: rgba(0,0,0,0.35);
    color: rgba(237, 230, 211, 0.6);
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-top: 1px solid rgba(168, 139, 61, 0.15);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    :root {
        --section-padding: 4rem 0;
    }

    .cb-burger { display: block; }

    .cb-nav-links {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(31, 24, 16, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        transform: translateY(-200%);
        transition: transform 0.3s ease;
        max-height: calc(100vh - 64px);
        overflow-y: auto;
    }

    .cb-nav-links.open {
        transform: translateY(0);
    }

    .cb-nav-links li {
        width: 100%;
    }

    .cb-nav-links a {
        display: block;
        padding: 0.75rem 1.5rem !important;
    }

    .cb-nav-links a::after { display: none; }
    .cb-nav-links a:hover { background: rgba(168, 139, 61, 0.1); }

    .cb-nosotros-grid,
    .cb-sentidos-banner,
    .cb-kits-grid {
        grid-template-columns: 1fr;
    }

    .cb-sales-grid {
        grid-template-columns: 1fr;
    }

    .cb-nosotros-img {
        max-width: 480px;
        margin: 0 auto;
    }

    .cb-hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .cb-hero-actions .cb-btn { width: 100%; justify-content: center; }
}

@media (max-width: 576px) {
    .cb-section-header { margin-bottom: 2.5rem; }
    .cb-mezcal-body { padding: 1.25rem; }
    .cb-sentidos-banner { padding: 1.5rem; }

    .cb-nosotros-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cb-stat { padding: 0.5rem; border-bottom: 1px solid var(--cb-cream-dark); padding-bottom: 1rem; }
    .cb-stat:last-child { border-bottom: none; }
}
