/* ===== MARIDAJE CRIOLLO — Tropical Cálido + Sommelier Elegance ===== */

:root {
    --warm-dark: #1A0F0A;
    --warm-brown: #2C1810;
    --rich-brown: #5C3A28;
    --leather: #8B4513;
    --caramel: #D4853A;
    --gold: #F4C67A;
    --cream: #FFF5E6;
    --wine-red: #722F37;
    --wine-deep: #4A1C24;
    --text-light: #FFF5E6;
    --text-muted: rgba(255, 245, 230, 0.6);
    --accent: #D4853A;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Lato', sans-serif;
    background: var(--warm-dark);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s ease;
}

.nav.scrolled {
    background: rgba(26, 15, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.6rem 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-light);
}

.nav-icon { font-size: 1.5rem; }

.nav-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
}

.nav-title em {
    font-weight: 400;
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
    background: var(--wine-red) !important;
    color: var(--text-light) !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 6px;
    font-weight: 700 !important;
    transition: background 0.3s !important;
}

.nav-cta:hover { background: var(--wine-deep) !important; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-light);
    transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(160deg, var(--warm-dark) 0%, var(--warm-brown) 30%, var(--rich-brown) 60%, var(--leather) 100%);
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 70%, rgba(114, 47, 55, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(244, 198, 122, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    animation: fadeUp 1.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 1300px;
    width: 100%;
}

.hero-text {
    flex: 1;
    text-align: center;
    min-width: 0;
}

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

.hero-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.hero-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.stat { text-align: center; }

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-plus {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold);
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

.hero-cta {
    display: inline-block;
    background: var(--wine-red);
    color: var(--text-light);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(114, 47, 55, 0.4);
}

.hero-cta:hover {
    background: var(--wine-deep);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(114, 47, 55, 0.6);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    margin: 0.5rem auto 0;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; height: 30px; }
    50% { opacity: 1; height: 45px; }
}

/* ===== HERO VISUAL — Wine Glass with Swirling Wine ===== */
.hero-visual {
    flex: 0 0 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease-out;
}

.wine-glass-interactive {
    transition: transform 0.15s ease-out;
}

.wine-glass-wrapper {
    width: 240px;
    position: relative;
    animation: glassSwirl 4s ease-in-out infinite;
    transform-origin: 50% 92%;
    filter: drop-shadow(0 15px 40px rgba(114,47,55,0.3)) drop-shadow(0 5px 20px rgba(61,15,26,0.2));
}

.wine-glass-svg {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes glassSwirl {
    0%   { transform: rotate(0deg); }
    20%  { transform: rotate(8deg); }
    40%  { transform: rotate(-2deg); }
    60%  { transform: rotate(6deg); }
    80%  { transform: rotate(-4deg); }
    100% { transform: rotate(0deg); }
}

/* ===== SECTIONS ===== */
.section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
}

/* ===== CONCEPTO ===== */
.concepto { background: var(--warm-dark); }

.concepto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.concepto-text p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 1rem;
}

.concepto-lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem !important;
    font-style: italic;
    color: var(--text-light) !important;
    line-height: 1.8;
}

.concepto-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.principle-card {
    background: rgba(255,245,230,0.04);
    border: 1px solid rgba(244,198,122,0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: border-color 0.3s;
}

.principle-card:hover {
    border-color: rgba(244,198,122,0.3);
}

.principle-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.principle-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

.principle-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== MARIDAJES ===== */
.maridajes {
    background: linear-gradient(180deg, var(--warm-dark) 0%, var(--wine-deep) 100%);
}

.featured-pairing { max-width: 900px; margin: 0 auto; }

.pairing-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.wine-card, .dish-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(244,198,122,0.15);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    min-width: 250px;
    flex: 1;
}

.wine-glass, .dish-icon { font-size: 3rem; margin-bottom: 1rem; }

.wine-card h3, .dish-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.wine-region, .dish-origin {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.wine-notes, .dish-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.wine-notes span, .dish-notes span {
    background: rgba(244,198,122,0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--gold);
}

.pairing-plus {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--wine-red);
    font-weight: 700;
}

/* Analysis */
.sommelier-analysis {
    background: rgba(255,245,230,0.03);
    border: 1px solid rgba(244,198,122,0.1);
    border-radius: 16px;
    padding: 2.5rem;
}

.sommelier-analysis h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.analysis-lead {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.analysis-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.analysis-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 0.5rem 1rem;
    align-items: center;
}

.analysis-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
}

.analysis-bar {
    height: 6px;
    background: rgba(255,255,255,0.08);
    border-radius: 3px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--wine-red), var(--caramel));
    border-radius: 3px;
    transition: width 1.5s ease;
}

.analysis-note {
    grid-column: 2;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.pro-tip {
    background: rgba(114, 47, 55, 0.2);
    border-left: 3px solid var(--wine-red);
    padding: 1.2rem 1.5rem;
    border-radius: 0 8px 8px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.alternatives h4 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.alternatives ul {
    list-style: none;
    padding: 0;
}

.alternatives li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.alternatives li:last-child { border: none; }

/* ===== PAÍSES ===== */
.paises { background: var(--warm-dark); }

.country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.country-card {
    background: rgba(255,245,230,0.03);
    border: 1px solid rgba(244,198,122,0.08);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
    cursor: pointer;
}

.country-card:hover {
    border-color: rgba(244,198,122,0.25);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.country-flag { font-size: 2rem; margin-bottom: 0.8rem; }

.country-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: var(--gold);
}

.country-dishes {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.mini-pairing {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.dish-name {
    font-weight: 700;
    font-size: 0.9rem;
}

.wine-match {
    font-size: 0.8rem;
    color: var(--caramel);
    font-style: italic;
}

.country-count {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ===== SOMMELIER METHOD ===== */
.sommelier-section {
    background: linear-gradient(180deg, var(--warm-dark) 0%, var(--warm-brown) 100%);
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.method-card {
    padding: 2rem;
    border-radius: 12px;
    background: rgba(255,245,230,0.03);
    border: 1px solid rgba(244,198,122,0.08);
    transition: border-color 0.3s;
}

.method-card:hover { border-color: rgba(244,198,122,0.2); }

.method-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(244,198,122,0.15);
    margin-bottom: 0.5rem;
}

.method-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.method-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== QUOTE ===== */
.quote-section {
    background: var(--wine-deep);
    padding: 5rem 0;
}

.pull-quote {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.pull-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-style: italic;
    line-height: 1.6;
    color: var(--text-light);
}

.pull-quote cite {
    display: block;
    font-style: normal;
    font-size: 0.85rem;
    color: var(--gold);
    margin-top: 1.5rem;
    letter-spacing: 0.15em;
}

/* ===== NEWSLETTER ===== */
.newsletter { background: var(--warm-dark); }

.newsletter-card {
    background: linear-gradient(135deg, rgba(114,47,55,0.3) 0%, rgba(44,24,16,0.8) 100%);
    border: 1px solid rgba(244,198,122,0.15);
    border-radius: 20px;
    padding: 4rem;
    text-align: center;
}

.newsletter-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin: 1rem 0;
}

.newsletter-card > .newsletter-content > p {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 2rem;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    gap: 0.8rem;
    max-width: 450px;
    margin: 0 auto 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.9rem 1.2rem;
    border: 1px solid rgba(244,198,122,0.2);
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    color: var(--text-light);
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
}

.newsletter-form input::placeholder { color: var(--text-muted); }

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold);
}

.newsletter-form button {
    padding: 0.9rem 1.8rem;
    background: var(--wine-red);
    color: var(--text-light);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
    font-family: 'Lato', sans-serif;
    white-space: nowrap;
}

.newsletter-form button:hover { background: var(--wine-deep); }

.newsletter-note {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--warm-dark);
    border-top: 1px solid rgba(244,198,122,0.08);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo { font-size: 2rem; }

.footer-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    display: block;
    margin-top: 0.5rem;
}

.footer-name em { color: var(--gold); }

.footer-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

.footer-links h4 {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    padding: 0.3rem 0;
    transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.75rem;
    color: var(--text-muted);
}

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

/* ===== GUÍA DE VINOS ===== */
.guia-vinos-section {
    background: linear-gradient(180deg, var(--warm-dark) 0%, var(--warm-brown) 100%);
}

.guia-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 2;
}

.vinos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.8rem;
    margin-bottom: 3.5rem;
}

.vino-card {
    background: rgba(255,245,230,0.04);
    border: 1px solid rgba(244,198,122,0.1);
    border-radius: 16px;
    padding: 2.2rem;
    transition: border-color 0.3s, transform 0.3s;
}

.vino-card:hover {
    border-color: rgba(244,198,122,0.25);
    transform: translateY(-3px);
}

.vino-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.vino-emoji { font-size: 2rem; }

.vino-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--gold);
}

.vino-precio {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--caramel);
    font-weight: 700;
    background: rgba(212,133,58,0.15);
    padding: 0.15rem 0.6rem;
    border-radius: 12px;
}

.vino-perfil {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.3rem;
    line-height: 1.85;
}

.vino-maridajes-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.3rem;
}

.vino-maridajes-mini span {
    background: rgba(114,47,55,0.2);
    color: var(--text-light);
    padding: 0.35rem 0.85rem;
    border-radius: 16px;
    font-size: 0.78rem;
}

.vino-tip {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: italic;
    opacity: 0.7;
}

.guia-reglas {
    max-width: 800px;
    margin: 0 auto;
}

.guia-reglas h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--gold);
}

.reglas-grid {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.regla-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    background: rgba(255,245,230,0.03);
    border: 1px solid rgba(244,198,122,0.08);
    border-radius: 12px;
    padding: 1.5rem;
}

.regla-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(244,198,122,0.25);
    line-height: 1;
    flex-shrink: 0;
    min-width: 2rem;
    text-align: center;
}

.regla-item strong {
    display: block;
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.regla-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== GLOSARIO SOMMELIER ===== */
.glosario-section {
    background: var(--warm-dark);
}

.glosario-intro {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3.5rem;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 2;
}

.glosario-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.8rem;
}

.glosario-item {
    background: rgba(255,245,230,0.03);
    border: 1px solid rgba(244,198,122,0.08);
    border-radius: 12px;
    padding: 2rem;
    transition: border-color 0.3s;
}

.glosario-item:hover {
    border-color: rgba(244,198,122,0.2);
}

.glosario-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.glosario-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 1.1rem;
}

.glosario-ejemplo {
    display: block;
    font-size: 0.82rem;
    color: var(--caramel);
    font-style: italic;
    background: rgba(114,47,55,0.12);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    line-height: 1.65;
    margin-top: 0.5rem;
}

/* ===== ARTÍCULOS PREVIEW (HOME) ===== */
.articulos-preview {
    background: var(--deep-wine);
}

.articulos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.articulo-card {
    display: block;
    background: rgba(255,245,230,0.04);
    border: 1px solid rgba(244,198,122,0.1);
    border-radius: 14px;
    padding: 1.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.articulo-card:hover {
    border-color: var(--gold);
    background: rgba(255,245,230,0.07);
    transform: translateY(-3px);
}

.articulo-emoji {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.8rem;
}

.articulo-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0.6rem;
    line-height: 1.4;
}

.articulo-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.articulo-leer {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.articulo-card:hover .articulo-leer {
    text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-visual { flex: 0 0 220px; }
    .wine-glass-wrapper { width: 190px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: rgba(26,15,10,0.98);
        padding: 2rem;
        gap: 1rem;
    }
    .nav-toggle { display: flex; }
    .hero-content { flex-direction: column; gap: 1.5rem; padding: 1rem; }
    .hero-visual { flex: 0 0 auto; }
    .hero-wine-side { order: -1; }
    .wine-glass-wrapper { width: 150px; }
    .concepto-grid { grid-template-columns: 1fr; gap: 2rem; }
    .hero-stats { gap: 1.5rem; }
    .pairing-visual { flex-direction: column; }
    .pairing-plus { transform: rotate(90deg); }
    .country-grid { grid-template-columns: 1fr; }
    .vinos-grid { grid-template-columns: 1fr; }
    .glosario-grid { grid-template-columns: 1fr; }
    .articulos-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .newsletter-card { padding: 2rem; }
    .newsletter-form { flex-direction: column; }
    .analysis-item { grid-template-columns: 1fr; }
    .analysis-label { margin-bottom: 0.3rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 3rem; }
    .stat-number { font-size: 1.8rem; }
    .footer-grid { grid-template-columns: 1fr; }
}
