/* PAULINA'S Event Center — Estilos */
:root {
  --primary: #cdae54;
  --primary-dark: #b59740;
  --primary-fg: #ffffff;
  --bg: #ffffff;
  --fg: #1a1812;
  --muted: #6e6a60;
  --muted-bg: #f7f5f0;
  --border: #e8e3d6;
  --accent: #f3ecd8;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow: 0 6px 24px rgba(20,15,5,.08);
  --shadow-lg: 0 20px 50px rgba(20,15,5,.18);
  --radius: 10px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--fg);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; margin: 0; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 768px){ .container { padding: 0 2rem; } }

.eyebrow { font-size: .72rem; letter-spacing: .25em; text-transform: uppercase; color: var(--primary); font-weight: 700; margin-bottom: .75rem; }

.section { padding: 5rem 0; }
@media (min-width: 768px){ .section { padding: 7rem 0; } }
.section-alt { background: var(--muted-bg); }
.section-white { background: var(--bg); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-head h2 { font-size: clamp(1.85rem, 3.5vw, 3rem); }

/* Botones */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .85rem 1.65rem; border-radius: var(--radius); font-weight: 600; font-size: .95rem; border: 1px solid transparent; transition: all .2s ease; cursor: pointer; }
.btn-primary { background: var(--primary); color: var(--primary-fg); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(205,174,84,.35); }
.btn-outline { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.4); backdrop-filter: blur(6px); }
.btn-outline:hover { background: #fff; color: var(--fg); }
.btn-dark { background: var(--fg); color: #fff; }
.btn-dark:hover { background: #000; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* Header */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; background: rgba(255,255,255,.92); backdrop-filter: blur(8px); transition: box-shadow .25s, background .25s; border-bottom: 1px solid transparent; }
.header.scrolled { box-shadow: var(--shadow-sm); background: rgba(255,255,255,.98); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
@media (min-width: 768px){ .header-inner { height: 80px; } }
.brand { display: flex; align-items: center; gap: .65rem; }
.brand-mark { width: 48px; height: 38px; border-radius: 8px; color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; }
.brand-name {
    font-family: 'Great Vibes', cursive;
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: .04em;
    background: linear-gradient(100deg, #B8860B 0%, #D4AF37 40%, #F5D060 65%, #B8860B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    background-clip: text;
}
.brand-tag { 
    font-size: 0.85rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #777777;
    font-weight: 500;
    font-family: 'Cormorant Garamond', Georgia, serif;
    margin-top: -10px;
}
.nav { display: none; gap: 1.75rem; font-size: .9rem; font-weight: 500; }
@media (min-width: 1024px){ .nav { display: flex; } }
.nav a { color: rgba(26,24,18,.78); transition: color .15s; }
.nav a:hover { color: var(--primary); }
.header-actions { display: flex; align-items: center; gap: .6rem; }
.lang-btn { display: inline-flex; align-items: center; gap: .35rem; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .55rem .85rem; border: 1px solid var(--border); border-radius: 8px; background: #fff; color: var(--fg); transition: all .15s; }
.lang-btn:hover { border-color: var(--primary); color: var(--primary); }
.header-cta { display: none; }
@media (min-width: 768px){ .header-cta { 
        display: inline-flex;
        padding: .35rem .85rem;
        font-size: .92rem;
        font-weight: 700;
        border-radius: 6px;
} }
.menu-btn { display: inline-flex; padding: .5rem; background: transparent; border: 0; }
@media (min-width: 1024px){ .menu-btn { display: none; } }
.mobile-menu { display: none; background: #fff; border-top: 1px solid var(--border); }
.mobile-menu.open { display: block; }
.mobile-menu .container { display: flex; flex-direction: column; gap: .5rem; padding-top: 1rem; padding-bottom: 1rem; }
.mobile-menu a, .mobile-menu button { padding: .65rem 0; font-weight: 500; text-align: left; background: transparent; border: 0; font-size: .95rem; }

/* Hero */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; justify-content: center; overflow: hidden; color: #fff; text-align: center; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; }
.hero-inner { position: relative; z-index: 2; padding: 7rem 1.25rem 4rem; max-width: 980px; }
.hero-tag { display: inline-flex; align-items: center; gap: .5rem; padding: .4rem 1rem; border-radius: 999px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); font-size: .72rem; text-transform: uppercase; letter-spacing: .2em; margin-bottom: 1.5rem; }
.hero h1 { font-size: clamp(2.2rem, 6vw, 4.5rem); margin-bottom: 1.25rem; }
.hero p { font-size: clamp(1rem, 1.6vw, 1.2rem); color: rgba(255,255,255,.88); max-width: 720px; margin: 0 auto 2.2rem; }
.hero-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px){ .about-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.about-text h2 { font-size: clamp(1.85rem, 3.2vw, 2.85rem); margin-bottom: 1.25rem; }
.about-text p { color: var(--muted); margin-bottom: 1.75rem; font-size: 1.05rem; }
.feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .75rem; }
.feature-list li { display: flex; gap: .65rem; align-items: flex-start; }
.check { color: var(--primary); flex-shrink: 0; margin-top: 3px; }
.about-media { position: relative; }
.about-media .main-img { aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-media .main-img img { width: 100%; height: 100%; object-fit: cover; }
.about-media .accent-img { display: none; position: absolute; bottom: -2rem; left: -2rem; width: 60%; aspect-ratio: 1/1; border-radius: var(--radius); overflow: hidden; border: 8px solid #fff; box-shadow: var(--shadow-lg); }
.about-media .accent-img img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 768px){ .about-media .accent-img { display: block; } }

/* Cards grid */
.cards-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px){ .cards-3 { grid-template-columns: repeat(3, 1fr); } }
.card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: box-shadow .25s, transform .25s; }
.card:hover { box-shadow: var(--shadow-lg); }
.card-img { aspect-ratio: 4/3; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 1.5rem; }
.card-body h3 { font-size: 1.4rem; margin-bottom: .25rem; }
.card-cap { color: var(--primary); font-weight: 600; font-size: .85rem; margin-bottom: .65rem; }
.card-desc { color: var(--muted); font-size: .92rem; }

/* Why */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px){ .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px){ .why-grid { grid-template-columns: repeat(4, 1fr); } }
.why-item { padding: 1.5rem; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); transition: all .2s; }
.why-item:hover { border-color: rgba(205,174,84,.5); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.why-icon { width: 44px; height: 44px; border-radius: 8px; background: var(--accent); color: var(--primary); display: grid; place-items: center; margin-bottom: 1rem; }
.why-item h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; margin-bottom: .35rem; }
.why-item p { color: var(--muted); font-size: .88rem; margin: 0; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; }
@media (min-width: 768px){ .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
.gallery-item { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-sm); aspect-ratio: 1/1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.06); }
@media (min-width: 768px){
  .gallery-item.featured { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
}

/* Testimonials */
.testimonial { background: var(--muted-bg); padding: 1.75rem; border-radius: var(--radius); }
.stars { color: var(--primary); margin-bottom: 1rem; }
.testimonial p { font-style: italic; color: rgba(26,24,18,.85); margin: 0 0 1.5rem; }
.testimonial .name { font-weight: 600; }
.testimonial .event { font-size: .72rem; color: var(--primary); text-transform: uppercase; letter-spacing: .1em; margin-top: .15rem; }

/* Packages */
.packages-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px){ .packages-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }
.pkg { padding: 2rem; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); display: flex; flex-direction: column; }
.pkg.featured { background: var(--fg); color: #fff; box-shadow: var(--shadow-lg); }
@media (min-width: 768px){ .pkg.featured { transform: scale(1.04); } }
.pkg h3 { font-size: 1.6rem; margin-bottom: .5rem; }
.pkg-desc { font-size: .92rem; margin-bottom: 1.5rem; color: var(--muted); }
.pkg.featured .pkg-desc { color: rgba(255,255,255,.72); }
.pkg-features { list-style: none; padding: 0; margin: 0 0 1.75rem; display: grid; gap: .65rem; flex: 1; }
.pkg-features li { display: flex; gap: .55rem; align-items: flex-start; font-size: .92rem; }
.pkg-features .check { color: var(--primary); }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--border); padding: 1.1rem 0; }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 500; font-size: 1rem; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 1.5rem; color: var(--primary); transition: transform .2s; line-height: 1; }
.faq details[open] summary::after { content: '–'; }
.faq details p { color: var(--muted); margin: .85rem 0 0; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 1024px){ .contact-grid { grid-template-columns: 2fr 3fr; gap: 4rem; } }
.contact-info h2 { font-size: clamp(1.85rem, 3.2vw, 2.75rem); margin-bottom: .75rem; }
.contact-info > p { color: var(--muted); margin-bottom: 2rem; }
.contact-list { display: grid; gap: 1rem; margin-bottom: 2rem; }
.contact-list a { display: flex; gap: .75rem; align-items: flex-start; }
.contact-icon { width: 40px; height: 40px; border-radius: 8px; background: #fff; border: 1px solid var(--border); display: grid; place-items: center; color: var(--primary); flex-shrink: 0; transition: border-color .15s; }
.contact-list a:hover .contact-icon { border-color: var(--primary); }
.contact-list .label { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.contact-list .val { font-weight: 500; }
.map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); }
.map iframe { width: 100%; height: 280px; border: 0; display: block; }

.contact-form { background: #fff; padding: 1.75rem; border-radius: var(--radius); box-shadow: var(--shadow); display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
@media (min-width: 640px){ .contact-form { grid-template-columns: 1fr 1fr; padding: 2.5rem; } }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .85rem; font-weight: 500; }
.field input, .field select, .field textarea { font-family: inherit; font-size: .95rem; padding: .7rem .85rem; border: 1px solid var(--border); border-radius: 8px; background: #fff; color: var(--fg); transition: border-color .15s, box-shadow .15s; width: 100%; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(205,174,84,.18); }
.field textarea { resize: vertical; min-height: 110px; }
.alert-success { grid-column: 1 / -1; padding: .85rem 1rem; border-radius: 8px; background: #e8f5ec; color: #1f6b3a; border: 1px solid #b9e3c5; font-size: .92rem; }

/* Final CTA */
.final-cta { position: relative; padding: 6rem 0; color: #fff; text-align: center; overflow: hidden; }
.final-cta img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.final-cta .overlay { position: absolute; inset: 0; background: rgba(20,15,5,.82); }
.final-cta .inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; padding: 0 1.25rem; }
.final-cta h2 { font-size: clamp(2rem, 4vw, 3.25rem); margin-bottom: 1rem; }
.final-cta p { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 2rem; }

/* Footer */
.footer { background: var(--fg); color: rgba(255,255,255,.7); padding: 3.5rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px){ .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer .brand-name, .footer h4 { color: #fff; }
.footer h4 { font-family: var(--font-body); font-size: .9rem; font-weight: 600; margin: 0 0 .85rem; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; font-size: .9rem; }
.footer a:hover { color: var(--primary); }
.footer-tag { font-size: .9rem; max-width: 400px; margin-top: .75rem; }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .8rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem; }

/* Floating actions */
.floating { position: fixed; bottom: 1.25rem; right: 1.25rem; z-index: 60; display: flex; flex-direction: column; gap: .75rem; }
.fab { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-lg); transition: transform .2s; }
.fab:hover { transform: scale(1.08); }
.fab-wa { background: #25D366; }
.fab-call { background: var(--primary); }

/* Iconos inline */
.ico { width: 18px; height: 18px; stroke-width: 2; }
.ico-lg { width: 22px; height: 22px; }

.brand-diamond {
  width: 58px;   /* header */
  height: auto;
  display: block;
}

.brand-diamond .diamond-star path,
.brand-diamond .diamond-star line,
.brand-diamond .diamond-mark .outer,
.brand-diamond .diamond-mark .line,
.brand-diamond .diamond-mark .inner-diamond,
.brand-diamond .diamond-mark .inner-circle {
  stroke: url(#diamondGold);
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* estrella */
.brand-diamond .diamond-star path {
  stroke-width: 2.1;
}
.brand-diamond .diamond-star line {
  stroke-width: 1.8;
}

/* contorno principal */
.brand-diamond .diamond-mark .outer {
  stroke-width: 2.2;
}

/* líneas internas */
.brand-diamond .diamond-mark .line {
  stroke-width: 1.8;
  opacity: 0.95;
}

.brand-diamond .diamond-mark .line.thin {
  stroke-width: 1.4;
  opacity: 0.85;
}

/* diamante pequeño central */
.brand-diamond .diamond-mark .inner-diamond {
  stroke-width: 1.7;
}

/* círculo central */
.brand-diamond .diamond-mark .inner-circle {
  fill: #fffaf0;
  stroke-width: 1.7;
}

/* look más elegante */
.header-svg-wrap .brand-diamond {
  filter: drop-shadow(0 1px 4px rgba(184, 134, 11, 0.12));
  opacity: 0.96;
}


/* Cookie banner */
.cookie-banner {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 70;
  background: #fff; color: var(--fg);
  border: 1px solid var(--border); border-radius: 14px;
  box-shadow: 0 18px 50px rgba(20,15,5,.22);
  padding: 1rem 1.1rem;
  transform: translateY(20px); opacity: 0; transition: opacity .25s ease, transform .25s ease;
}
.cookie-banner.show { transform: translateY(0); opacity: 1; }
.cookie-inner {
  display: flex; flex-direction: column; gap: .9rem;
  max-width: 1100px; margin: 0 auto;
}
.cookie-text strong { display: block; font-family: var(--font-display); font-size: 1.15rem; margin-bottom: .25rem; }
.cookie-text p { margin: 0; font-size: .9rem; color: var(--muted); line-height: 1.5; }
.cookie-text a { color: var(--primary); text-decoration: underline; }
.cookie-actions { display: flex; gap: .55rem; flex-wrap: wrap; }
.cookie-actions .btn { padding: .65rem 1.25rem; font-size: .88rem; }
@media (min-width: 768px) {
  .cookie-banner { left: auto; right: 1.5rem; bottom: 1.5rem; max-width: 560px; padding: 1.25rem 1.4rem; }
  .cookie-inner { flex-direction: row; align-items: center; }
  .cookie-text { flex: 1; }
}

/* Legal page */
.legal-page { padding: 7rem 0 4rem; background: var(--bg); }
.legal-container { max-width: 820px; }
.legal-back { display: inline-block; margin-bottom: 1.5rem; color: var(--primary); font-weight: 600; font-size: .9rem; }
.legal-back:hover { text-decoration: underline; }
.legal-header { padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); margin-bottom: 2.5rem; }
.legal-header h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: .5rem; }
.legal-sub { color: var(--muted); font-size: .9rem; margin: 0; }
.legal-content section { margin-bottom: 2.25rem; }
.legal-content h2 { font-size: 1.35rem; margin-bottom: .85rem; color: var(--fg); }
.legal-content p { color: var(--fg); margin: 0 0 .85rem; font-size: .98rem; line-height: 1.7; }
.legal-content ul { margin: 0 0 1rem; padding-left: 1.25rem; color: var(--fg); }
.legal-content li { margin-bottom: .4rem; line-height: 1.65; }
.legal-content a { color: var(--primary); text-decoration: underline; }
.legal-content a:hover { color: var(--primary-dark); }