/* ============================================================
   GRUPO DRA. VANESA PIGOSSO — Landing Page  v3.0
   ============================================================ */

:root {
    --bg-primary:    #faf9f6;
    --bg-secondary:  #f2f3ef;
    --text-dark:     #252825;
    --text-muted:    #696d6a;
    --accent-gold:   #c5a880;
    --accent-teal:   #0f4c43;
    --accent-teal-lt: rgba(15,76,67,0.07);
    --font-serif:    'Cinzel', 'Times New Roman', serif;
    --font-script:   'Dancing Script', cursive;
    --font-sans:     'Montserrat', Arial, sans-serif;
    --radius-card:   28px;
    --shadow-sm:  0 12px 40px rgba(15,76,67,0.07);
    --shadow-md:  0 24px 70px rgba(15,76,67,0.10);
    --shadow-lg:  0 40px 100px rgba(15,76,67,0.13);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-sans);
    background-color: var(--bg-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }

/* ---- HEADER ---- */
.main-header {
    background-color: rgba(250,249,246,0.96);
    border-bottom: 1px solid rgba(197,168,128,0.18);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 14px 32px;
    backdrop-filter: blur(14px);
}
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    letter-spacing: 2px;
    color: var(--accent-teal);
    display: block;
    font-weight: 600;
}
.logo-slogan {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    color: var(--accent-gold);
    display: block;
    margin-top: 3px;
}
.nav-desktop { display: flex; align-items: center; gap: 28px; }
.nav-desktop a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 400;
    transition: color .2s;
}
.nav-desktop a:hover { color: var(--accent-teal); }
.btn-cta-nav {
    background-color: var(--accent-gold) !important;
    color: #fff !important;
    padding: 9px 22px;
    border-radius: 4px;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    transition: background .25s, transform .2s !important;
}
.btn-cta-nav:hover {
    background-color: var(--accent-teal) !important;
    transform: translateY(-1px) !important;
}
.btn-nav-short { display: none; }
.btn-nav-full  { display: inline; }

/* ---- HERO ---- */
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 80px 32px 100px;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 65%, rgba(197,168,128,.06) 100%);
}
.hero-section::before {
    content: "PIGOSSO";
    position: absolute;
    top: -60px; right: -50px;
    font-family: var(--font-serif);
    font-size: 20vw;
    font-weight: 700;
    color: rgba(197,168,128,.045);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    letter-spacing: -6px;
}
.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}
.hero-pretitle {
    font-family: var(--font-script);
    font-size: 1.65rem;
    color: var(--accent-teal);
    display: block;
    margin-bottom: 14px;
}
.hero-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 16px;
}
.hero-title strong { color: var(--accent-gold); display: block; }
.hero-copy {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 460px;
    margin-bottom: 30px;
}
.hero-cta-group { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-bottom: 36px; }
.btn-primary {
    display: inline-block;
    background-color: var(--accent-teal);
    color: #fff;
    text-decoration: none;
    padding: 13px 34px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform .2s, background-color .25s;
}
.btn-primary:hover { background-color: var(--accent-gold); transform: translateY(-1px); }
.btn-secondary {
    color: var(--accent-teal);
    text-decoration: none;
    font-weight: 500;
    font-size: .9rem;
    border-bottom: 1px solid var(--accent-teal);
    padding-bottom: 2px;
    transition: opacity .2s;
}
.btn-secondary:hover { opacity: .65; }
.hero-services { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.hero-services li {
    background-color: var(--accent-teal-lt);
    border: 1px solid rgba(15,76,67,.1);
    border-radius: 999px;
    padding: 7px 16px;
    font-size: .85rem;
}
.hero-visual { position: relative; }
.hero-visual-card {
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: var(--bg-secondary);
}
.hero-image { min-height: 450px; background-size: cover; background-position: center top; }
.hero-summary { padding: 26px; background: #fff; }
.hero-summary-label {
    display: inline-block;
    background-color: rgba(197,168,128,.1);
    color: var(--accent-gold);
    padding: 7px 14px;
    border-radius: 999px;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.hero-summary p { font-size: .9rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.7; }
.hero-summary-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.hero-summary-tags span {
    background-color: var(--accent-teal-lt);
    color: var(--accent-teal);
    padding: 7px 13px;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 500;
}

/* ---- STATS BAR ---- */
.stats-bar { background-color: var(--accent-teal); padding: 42px 32px; }
.stats-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.stat-item { text-align: center; padding: 12px 48px; flex: 1; min-width: 130px; }
.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 7px;
}
.stat-label { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,.72); }
.stat-divider { width: 1px; height: 48px; background-color: rgba(255,255,255,.15); flex-shrink: 0; }

/* ---- SERVICES OVERVIEW (scroll horizontal) ---- */
.services-overview-section { padding: 90px 0 60px; overflow: hidden; }
.services-overview-header { text-align: center; padding: 0 32px; max-width: 700px; margin: 0 auto 44px; }
.services-scroll-wrapper {
    overflow-x: auto;
    padding: 10px 32px 40px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-gold) transparent;
    cursor: grab;
}
.services-scroll-wrapper::-webkit-scrollbar { height: 3px; }
.services-scroll-wrapper::-webkit-scrollbar-thumb { background-color: var(--accent-gold); border-radius: 4px; }
.services-scroll-track { display: flex; gap: 20px; width: max-content; }
.service-overview-card {
    width: 290px; height: 420px;
    border-radius: 24px;
    overflow: hidden;
    flex-shrink: 0;
    background-size: cover;
    background-position: center top;
    text-decoration: none;
    position: relative;
    display: block;
    transition: transform .3s, box-shadow .3s;
    box-shadow: var(--shadow-sm);
}
.service-overview-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-overview-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(15,76,67,.92) 0%, rgba(15,76,67,.38) 50%, rgba(0,0,0,.08) 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 26px 22px;
}
.service-overview-script { font-family: var(--font-script); font-size: 1rem; color: rgba(255,255,255,.65); display: block; margin-bottom: 4px; }
.service-overview-title { font-family: var(--font-serif); font-size: 1.55rem; color: var(--accent-gold); font-weight: 600; line-height: 1.15; margin-bottom: 14px; }
.service-overview-cta {
    display: inline-block;
    background-color: var(--accent-gold);
    color: #fff;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
    transition: background .2s;
}
.service-overview-card:hover .service-overview-cta { background-color: #fff; color: var(--accent-teal); }

/* ---- SERVICE SECTIONS — KEY VISUAL FOLLETO ---- */
.service-section {
    position: relative;
    overflow: hidden;
    padding: 90px 32px;
}
.service-section:nth-of-type(odd)  { background-color: var(--bg-primary); }
.service-section:nth-of-type(even) { background-color: var(--bg-secondary); }

.section-watermark {
    position: absolute;
    top: -30px; left: -20px;
    font-family: var(--font-serif);
    font-size: 19vw;
    color: rgba(197,168,128,.065);
    font-weight: 700;
    line-height: .85;
    pointer-events: none;
    letter-spacing: -5px;
    user-select: none;
    z-index: 0;
}
.service-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.service-reverse .service-photo-col { order: 2; }
.service-reverse .service-content-col { order: 1; }

.service-photo {
    border-radius: var(--radius-card);
    min-height: 540px;
    background-size: cover;
    background-position: center top;
    box-shadow: var(--shadow-md);
    position: relative;
}
.service-photo-caption {
    position: absolute;
    bottom: 20px; left: 20px;
    background: rgba(15,76,67,.88);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 14px 18px;
    color: #fff;
}
.service-photo-caption strong { display: block; font-family: var(--font-serif); font-size: 1rem; letter-spacing: 1px; margin-bottom: 4px; }
.service-photo-caption em { font-style: normal; font-size: .78rem; color: var(--accent-gold); }

.service-script-label {
    font-family: var(--font-script);
    font-size: 1.55rem;
    color: var(--accent-teal);
    display: block;
    margin-bottom: 4px;
}
.service-display-title {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    color: var(--accent-gold);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
}
.service-subtitle { font-size: .95rem; color: var(--text-muted); font-weight: 300; margin-bottom: 20px; line-height: 1.75; }
.service-content-body { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 28px; }
.service-divider-bar {
    width: 4px;
    min-height: 180px;
    background-color: var(--accent-teal);
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 4px;
}
.services-luxury-list { list-style: none; flex: 1; }
.services-luxury-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(15,76,67,.07);
    display: flex;
    align-items: baseline;
    gap: 12px;
}
.services-luxury-list li:last-child { border-bottom: none; }
.service-bullet-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px; height: 26px;
    background-color: var(--accent-teal);
    color: #fff;
    border-radius: 50%;
    font-size: .78rem;
    flex-shrink: 0;
    font-weight: bold;
}
.services-luxury-list li span:last-child { font-size: .93rem; color: var(--text-dark); line-height: 1.5; }
.service-professional-footer { padding-top: 24px; border-top: 1px solid rgba(15,76,67,.1); }
.service-professional-footer strong { display: block; font-family: var(--font-serif); font-size: 1.1rem; color: var(--accent-teal); margin-bottom: 4px; }
.service-professional-footer em { font-style: normal; font-size: .84rem; color: var(--text-muted); letter-spacing: .5px; }

/* ---- ABOUT ---- */
.section-about { padding: 100px 32px; background-color: var(--bg-primary); }
.about-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.about-visual { position: relative; min-height: 500px; }
.about-img-main {
    border-radius: var(--radius-card);
    width: 80%; height: 460px;
    background-size: cover; background-position: center;
    box-shadow: var(--shadow-sm);
}
.about-img-accent {
    border-radius: 20px;
    width: 54%; height: 250px;
    background-size: cover; background-position: center;
    position: absolute; bottom: -28px; right: 0;
    box-shadow: var(--shadow-lg);
    border: 6px solid #fff;
}
.about-content .section-badge,
.about-content .section-main-title { text-align: left; }
.about-content .section-main-title { margin-bottom: 22px; }
.about-text { font-size: .96rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 16px; font-weight: 300; }
.about-content .btn-primary { margin-top: 10px; }

/* ---- TESTIMONIALS ---- */
.section-testimonials { background-color: var(--bg-secondary); padding: 90px 32px; }
.testimonial-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; margin-top: 50px; }
.testimonial-card { background-color: #fff; border-radius: 24px; padding: 32px; box-shadow: var(--shadow-sm); border: 1px solid rgba(15,76,67,.06); flex: 1 1 300px; max-width: 400px; }
.testimonial-stars { font-size: .95rem; color: var(--accent-gold); margin-bottom: 18px; letter-spacing: 2px; }
.testimonial-text { font-size: .94rem; color: var(--text-dark); line-height: 1.85; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--accent-teal), var(--accent-gold)); flex-shrink: 0; overflow: hidden; }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-author strong { display: block; font-size: .93rem; color: var(--accent-teal); margin-bottom: 2px; }
.testimonial-author span { font-size: .82rem; color: var(--text-muted); }
/* Sección testimonios dinámica (tipo=testimonios) hereda .section-testimonials */
.section-testimonios-dinamica {
    position: relative;
    overflow: hidden;
}
.section-testimonios-dinamica.has-bg-image {
    background-color: var(--accent-teal);
}
.section-testimonios-dinamica:not(.has-bg-image) .section-wm {
    position: absolute;
    top: -30px; left: -20px;
    font-family: var(--font-serif);
    font-size: 19vw;
    color: rgba(197,168,128,.065);
    font-weight: 700;
    line-height: .85;
    pointer-events: none;
    letter-spacing: -5px;
    user-select: none;
    z-index: 0;
}
.section-testimonios-dinamica > *:not(.section-wm):not(.section-bg-overlay) {
    position: relative; z-index: 1;
}

/* ---- SECCIÓN AGENDAMIENTO ONLINE ---- */
.section-agendar {
    background: linear-gradient(135deg, #0a2e27 0%, var(--accent-teal) 60%, #143f36 100%);
    padding: 80px 32px;
    position: relative; overflow: hidden;
    text-align: center;
}
.section-agendar::before {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(197,168,128,.08) 0%, transparent 65%);
    pointer-events: none;
}
.agendar-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.agendar-inner .section-badge { color: var(--accent-gold); }
.agendar-subtitulo { color: rgba(255,255,255,.75); font-size: .97rem; margin-bottom: 36px; font-weight: 300; }
.agendar-steps {
    display: flex; align-items: center; justify-content: center;
    gap: 10px; flex-wrap: wrap; margin-bottom: 38px;
}
.agendar-step { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.as-num { font-family: var(--font-serif); font-size: 1.4rem; color: var(--accent-gold); line-height: 1; }
.as-lbl { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.65); }
.as-arrow { color: rgba(197,168,128,.6); font-size: 1.2rem; margin-top: -8px; }
.btn-agendar-cta {
    display: inline-block; background: var(--accent-gold);
    color: #fff; text-decoration: none;
    padding: 15px 38px; border-radius: 4px;
    font-weight: 600; font-size: .95rem;
    transition: background .25s, transform .2s, box-shadow .25s;
    letter-spacing: .03em;
}
.btn-agendar-cta:hover { background: #b8955e; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.agendar-off-msg {
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
    border-radius: 14px; padding: 18px 24px;
    color: rgba(255,255,255,.88); font-size: .93rem; line-height: 1.7;
    margin-bottom: 24px; text-align: left;
}
.btn-wa-section {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 28px; background: #25d366; color: #fff;
    border-radius: 8px; text-decoration: none; font-size: .9rem; font-weight: 600;
    transition: background .2s;
}
.btn-wa-section:hover { background: #128c7e; }

/* ---- CTA BANNER ---- */
.section-cta-banner {
    background: linear-gradient(135deg, var(--accent-teal) 0%, #0a2e27 100%);
    padding: 80px 32px;
    position: relative; overflow: hidden;
}
.section-cta-banner::before {
    content: "";
    position: absolute; top: -120px; right: -120px;
    width: 520px; height: 520px;
    border-radius: 50%;
    background: rgba(197,168,128,.055);
    pointer-events: none;
}
.cta-banner-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 48px;
    align-items: center;
}
.cta-banner-title { font-family: var(--font-serif); font-size: 2.6rem; color: #fff; font-weight: 400; line-height: 1.25; margin-top: 8px; }
.cta-banner-actions { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.btn-whatsapp-lg { display: inline-flex; align-items: center; background-color: #25d366; color: #fff; text-decoration: none; padding: 15px 34px; border-radius: 4px; font-weight: 600; font-size: .92rem; transition: transform .2s; }
.btn-whatsapp-lg:hover { transform: scale(1.03); }
.btn-cta-teal { background-color: var(--accent-teal) !important; box-shadow: 0 4px 18px rgba(15,76,67,.25); transition: background-color .2s, transform .2s, box-shadow .2s !important; }
.btn-cta-teal:hover { background-color: var(--accent-gold) !important; transform: translateY(-2px) !important; box-shadow: 0 6px 22px rgba(197,168,128,.35) !important; }
.cta-banner-ig { font-size: .85rem; color: rgba(255,255,255,.55); }

/* ---- FOOTER ---- */
.main-footer { background-color: #081e1a; color: #fff; padding: 70px 32px 40px; }
.footer-container { max-width: 1100px; margin: 0 auto; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.3fr;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    margin-bottom: 28px;
}
.footer-brand h3 { font-family: var(--font-serif); letter-spacing: 2px; font-size: 1.15rem; margin-bottom: 10px; }
.footer-slogan { font-style: italic; color: var(--accent-gold); font-size: .9rem; max-width: 270px; line-height: 1.65; }
.footer-links h4, .footer-contact h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: 2px; color: var(--accent-gold); margin-bottom: 18px; }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { color: rgba(255,255,255,.58); text-decoration: none; font-size: .88rem; transition: color .2s; }
.footer-links ul li a:hover { color: var(--accent-gold); }
.footer-contact p { font-size: .88rem; color: rgba(255,255,255,.58); margin-bottom: 16px; }
.btn-whatsapp { display: inline-block; background-color: #25d366; color: #fff; text-decoration: none; padding: 9px 22px; font-weight: 500; border-radius: 4px; font-size: .85rem; margin-bottom: 12px; transition: transform .2s; }
.btn-whatsapp:hover { transform: scale(1.03); }
.instagram-handle { font-size: .82rem; color: rgba(255,255,255,.45); }
.footer-credits { font-size: .74rem; opacity: .38; text-align: center; }

/* ---- SHARED ---- */
.section-container { max-width: 1200px; margin: 0 auto; }
.section-header-box { text-align: center; margin-bottom: 40px; }
.section-badge { font-size: .75rem; text-transform: uppercase; letter-spacing: 2.5px; color: var(--accent-gold); display: block; margin-bottom: 10px; }
.section-main-title { font-family: var(--font-serif); font-size: 2.1rem; color: var(--accent-teal); font-weight: 400; margin-bottom: 10px; }
.section-description-text { font-size: .97rem; color: var(--text-muted); text-align: center; font-weight: 300; max-width: 600px; margin: 0 auto; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .hero-grid, .about-grid, .cta-banner-inner, .footer-grid { grid-template-columns: 1fr; }
    .service-grid { grid-template-columns: 1fr; }
    .service-reverse .service-photo-col, .service-reverse .service-content-col { order: unset; }
    .hero-copy-area { text-align: center; }
    .hero-copy { margin-left: auto; margin-right: auto; }
    .hero-cta-group { justify-content: center; }
    .hero-services { justify-content: center; }
    .hero-title { font-size: 2.3rem; }
    .service-display-title { font-size: 2.6rem; }
    .cta-banner-title { font-size: 2rem; }
    .cta-banner-inner { text-align: center; }
    .cta-banner-actions { align-items: center; }
    .about-img-accent { display: none; }
    .stat-divider { display: none; }
    .stat-item { padding: 12px 24px; }
    .testimonial-list { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .main-header { padding: 12px 16px; }
    .nav-desktop a:not(.btn-cta-nav) { display: none; }
    .btn-cta-nav { padding: 8px 14px !important; font-size: .78rem !important; white-space: nowrap; }
    .btn-nav-full { display: none; }
    .btn-nav-short { display: inline; }
    .hero-title { font-size: 1.9rem; }
    .service-display-title { font-size: 2rem; }
    .section-watermark { font-size: 28vw; }
    .service-photo { min-height: 300px; }
    .service-section { padding: 60px 16px; }
    .section-about { padding: 70px 16px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-visual { min-height: unset; display: flex; justify-content: center; }
    .about-img-main { width: 100%; max-width: 420px; height: 340px; margin: 0 auto; }
    .section-testimonials { padding: 60px 16px; }
    .stats-container { flex-direction: column; gap: 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 34px; }
}

/* ── Botón CTA Más Info en secciones de servicio ── */
.service-cta-row {
    margin-top: 28px;
}
.btn-service-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--accent-teal);
    color: #fff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .88rem;
    letter-spacing: .3px;
    transition: transform .2s, background-color .2s, box-shadow .2s;
    box-shadow: 0 4px 14px rgba(15,76,67,.22);
}
.btn-service-cta:hover {
    background-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197,168,128,.35);
}

/* ── Iconos sociales del footer ── */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}
.footer-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: transform .2s, box-shadow .2s;
    text-decoration: none;
}
.footer-social-wa {
    background-color: #25d366;
    color: #fff;
    box-shadow: 0 3px 12px rgba(37,211,102,.35);
}
.footer-social-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(37,211,102,.5);
}
.footer-social-ig {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    color: #fff;
    box-shadow: 0 3px 12px rgba(214,36,159,.3);
}
.footer-social-ig:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(214,36,159,.45);
}

/* ══════════════════════════════════════════
   SECCIÓN BANNERS DE PROMOCIONES
══════════════════════════════════════════ */
/* ══════════════════════════════════════════
   SECCIÓN PROMOCIONES — SLIDER
══════════════════════════════════════════ */
.section-promos {
    padding: 72px 32px;
    background: var(--bg);
}
.promos-container { max-width: 1160px; margin: 0 auto; }

/* Slider wrapper: oculta overflow y contiene flechas/dots */
.promos-slider-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 4px 28px rgba(0,0,0,.09);
}

/* Track: contenedor flex que se desplaza con transform */
.promos-track {
    display: flex;
    transition: transform .55s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}

/* Cada slide ocupa el 100% del wrapper */
.promo-slide {
    flex: 0 0 100%;
    width: 100%;
}

/* Card del slide */
.promo-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background: var(--white);
    min-height: 260px;
}
/* Imagen ocupa 40% del ancho */
.promo-card-img {
    flex: 0 0 40%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-color: var(--accent-teal);
}
.promo-card-img-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, transparent 60%, rgba(255,255,255,.06));
}
/* Imagen a la derecha para slides pares */
.promo-card.promo-card-reverse { flex-direction: row-reverse; }
.promo-card.promo-card-reverse .promo-card-img-overlay {
    background: linear-gradient(to left, transparent 60%, rgba(255,255,255,.06));
}
/* Contenido */
.promo-card-body {
    flex: 1;
    padding: 40px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}
.promo-card-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    color: var(--accent-teal);
    margin: 0; line-height: 1.3;
}
.promo-card-desc {
    font-size: .93rem;
    color: var(--text-muted);
    margin: 0; line-height: 1.75;
    max-width: 540px;
}
.promo-card-btn {
    display: inline-flex; align-items: center; gap: 7px;
    align-self: flex-start;
    padding: 12px 28px; border-radius: 4px;
    font-weight: 600; font-size: .88rem; text-decoration: none;
    transition: background-color .2s, transform .2s;
    margin-top: 4px;
}
.promo-btn-wa, .promo-btn-url { background-color: var(--accent-teal); color: #fff; }
.promo-card-btn:hover { background-color: var(--accent-gold); transform: translateY(-1px); }

/* Flechas de navegación */
.promos-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 40px; height: 40px;
    background: rgba(255,255,255,.92); border: none; border-radius: 50%;
    font-size: 1.6rem; line-height: 1; cursor: pointer;
    color: var(--accent-teal);
    box-shadow: 0 2px 10px rgba(0,0,0,.15);
    display: flex; align-items: center; justify-content: center;
    z-index: 10;
    transition: background .2s, transform .2s;
}
.promos-arrow:hover { background: var(--accent-teal); color: #fff; transform: translateY(-50%) scale(1.08); }
.promos-prev { left: 14px; }
.promos-next { right: 14px; }

/* Dots */
.promos-dots {
    position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 8px; z-index: 10;
}
.promos-dot {
    width: 9px; height: 9px; border-radius: 50%;
    background: rgba(15,76,67,.25); border: none; cursor: pointer;
    transition: background .2s, transform .2s;
    padding: 0;
}
.promos-dot.active { background: var(--accent-teal); transform: scale(1.25); }

/* ══════════════════════════════════════════
   SECCIÓN FEED DE INSTAGRAM
══════════════════════════════════════════ */
.section-ig-feed {
    padding: 72px 32px 88px;
    background: #faf9f7;
    border-top: 1px solid rgba(0,0,0,.06);
}
.ig-feed-container { max-width: 1160px; margin: 0 auto; }

.ig-feed-header {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 14px; margin-bottom: 36px;
}
.ig-feed-title-wrap {
    display: flex; align-items: center; gap: 14px;
}
.ig-feed-logo {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; flex-shrink: 0;
}
.ig-feed-title {
    font-family: var(--font-heading);
    font-size: 1.45rem; margin: 0;
    color: var(--text-dark); line-height: 1.2;
}
.ig-feed-handle {
    font-size: .85rem; color: #d6249f; text-decoration: none;
    font-weight: 500; margin-top: 2px; display: block;
}
.ig-feed-handle:hover { text-decoration: underline; }
.ig-feed-follow-btn {
    display: inline-block; padding: 9px 22px;
    border: 1.5px solid #d6249f; border-radius: 4px;
    color: #d6249f; font-size: .84rem; font-weight: 600;
    text-decoration: none; transition: background .18s, color .18s;
    white-space: nowrap;
}
.ig-feed-follow-btn:hover { background: #d6249f; color: #fff; }

.ig-feed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}
.ig-feed-item { display: block; border-radius: 8px; overflow: hidden; }
.ig-feed-thumb {
    position: relative; width: 100%; padding-top: 100%;
    background-size: cover; background-position: center;
    background-color: #ede9e3;
}
.ig-feed-hover {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,.52);
    opacity: 0; transition: opacity .18s;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 8px; padding: 16px; color: #fff;
    text-align: center;
}
.ig-feed-item:hover .ig-feed-hover { opacity: 1; }
.ig-feed-hover span { font-size: .78rem; line-height: 1.4; }

@media (max-width: 768px) {
    .section-promos, .section-ig-feed { padding: 60px 16px; }
    .promo-card,
    .promo-card.promo-card-reverse { flex-direction: column; }
    .promo-card-img { flex: 0 0 auto; min-height: 200px; width: 100%; }
    .promo-card-body { padding: 24px 22px 28px; }
    .promo-card-title { font-size: 1.1rem; }
    .promos-arrow { width: 32px; height: 32px; font-size: 1.3rem; }
    .promos-prev { left: 8px; }
    .promos-next { right: 8px; }
    .ig-feed-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
    .ig-feed-header { flex-direction: column; align-items: flex-start; }
}

/* =====================================================
   SECCION GALERIA  (_galeria.php)
   Grid cuadrado 6 columnas x 2 filas, centrado
   ===================================================== */
/* ================================================
   BACKGROUND IMAGE genérico para secciones (no servicio)
   ================================================ */
.has-bg-image {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.section-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 35, 28, 0.68);
    z-index: 0;
    pointer-events: none;
}
.has-bg-image > *:not(.section-bg-overlay) {
    position: relative;
    z-index: 1;
}
/* Textos claros sobre bg oscuro */
.has-bg-image .section-main-title,
.has-bg-image .section-hero-title {
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,.5);
}
.has-bg-image .section-subtitle-text,
.has-bg-image .section-hero-sub,
.has-bg-image .mapa-direccion-text {
    color: rgba(255,255,255,.82);
}

/* ================================================
   SECCIÓN GALERÍA
   ================================================ */
.section-galeria {
    position: relative;
    overflow: hidden;
    padding: 80px 0 100px;
    background: var(--bg-secondary);
}
.section-galeria.has-bg-image {
    background: var(--accent-teal);
    padding-bottom: 80px;
}
/* Watermark igual que servicios */
.section-galeria:not(.has-bg-image) .section-wm {
    position: absolute;
    top: -30px; left: -20px;
    font-family: var(--font-serif);
    font-size: 19vw;
    color: rgba(197,168,128,.065);
    font-weight: 700;
    line-height: .85;
    pointer-events: none;
    letter-spacing: -5px;
    user-select: none;
    z-index: 0;
}
.section-galeria > *:not(.section-wm):not(.section-bg-overlay) {
    position: relative;
    z-index: 1;
}

/* Header de galería sin imagen */
.galeria-header-box {
    text-align: center;
    margin-bottom: 12px;
}
.galeria-header-box .section-main-title {
    font-family: var(--font-serif);
    color: var(--accent-teal);
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    margin-bottom: 10px;
}
.galeria-header-box .section-subtitle-text {
    color: var(--text-muted);
    font-size: .95rem;
    font-family: var(--font-sans);
}

.galeria-grid-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 44px 24px 0;
}

/* Flex centrado: las imágenes se agrupan al centro */
.galeria-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.galeria-item {
    position: relative;
    flex: 0 0 180px;
    width: 180px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 10px;
    background: #e8e4df;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: transform .3s, box-shadow .3s;
}
.galeria-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.galeria-img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.galeria-item:hover .galeria-img {
    transform: scale(1.07);
}

.galeria-item-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(15,46,37,.75));
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: .72rem;
    padding: 18px 8px 8px;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity .25s, transform .25s;
    text-align: center;
}
.galeria-item:hover .galeria-item-caption {
    opacity: 1; transform: translateY(0);
}

@media (max-width: 1024px) {
    .galeria-item { flex: 0 0 150px; width: 150px; }
}
@media (max-width: 680px) {
    .section-galeria { padding: 60px 0 80px; }
    .galeria-item { flex: 0 0 110px; width: 110px; }
    .galeria-grid-wrap { padding: 32px 12px 0; }
    .galeria-grid { gap: 8px; }
}
@media (max-width: 420px) {
    .galeria-item { flex: 0 0 90px; width: 90px; }
    .galeria-grid { gap: 6px; }
}

/* ================================================
   SECCIÓN MARCAS
   ================================================ */
.section-marcas {
    position: relative;
    overflow: hidden;
    padding: 80px 0 100px;
    background: var(--bg-secondary);
}
.section-marcas.has-bg-image {
    background-color: var(--accent-teal);
    padding-bottom: 80px;
}
.section-marcas:not(.has-bg-image) .section-wm {
    position: absolute;
    top: -30px; left: -20px;
    font-family: var(--font-serif);
    font-size: 19vw;
    color: rgba(197,168,128,.065);
    font-weight: 700;
    line-height: .85;
    pointer-events: none;
    letter-spacing: -5px;
    user-select: none;
    z-index: 0;
}
.section-marcas > *:not(.section-wm):not(.section-bg-overlay) {
    position: relative;
    z-index: 1;
}
.marcas-header {
    text-align: center;
    margin-bottom: 48px;
    padding: 0 24px;
}
.marcas-header .section-main-title {
    font-family: var(--font-serif);
    color: var(--accent-teal);
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    margin-bottom: 10px;
}
.marcas-header .section-subtitle-text {
    color: var(--text-muted);
    font-size: .95rem;
}
.has-bg-image .marcas-header .section-main-title { color: #fff; }
.has-bg-image .marcas-header .section-subtitle-text { color: rgba(255,255,255,.8); }

/* Scroll track — scroll infinito automático */
.marcas-scroll-wrapper {
    padding: 0 0 16px;
    overflow: hidden;
    width: 100%;
}
.marcas-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: marcas-scroll 28s linear infinite;
    padding-bottom: 4px;
}
.marcas-track:hover { animation-play-state: paused; }
@keyframes marcas-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Card individual */
.marca-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #dce8f7 0%, #e8f0fa 60%, #cdddf5 100%);
    border-radius: 20px;
    padding: 18px 20px 18px 18px;
    min-width: 240px;
    max-width: 280px;
    text-decoration: none;
    color: var(--text-dark);
    transition: transform .25s, box-shadow .25s;
    box-shadow: 0 4px 18px rgba(30,60,120,.08);
    position: relative;
}
.marca-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(30,60,120,.14);
}
.marca-logo-wrap {
    flex-shrink: 0;
    width: 58px;
    height: 58px;
    border-radius: 14px;
    overflow: hidden;
    background: var(--accent-teal);
    display: flex;
    align-items: center;
    justify-content: center;
}
.marca-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.marca-logo-placeholder {
    font-family: var(--font-script);
    font-size: 1.1rem;
    color: var(--accent-gold);
    text-align: center;
    padding: 4px;
    line-height: 1.2;
}
.marca-info {
    flex: 1;
    min-width: 0;
}
.marca-nombre {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: .95rem;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}
.marca-cat {
    font-size: .8rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 680px) {
    .section-marcas { padding: 60px 0 80px; }
    .marcas-scroll-wrapper { padding: 0 16px 16px; }
    .marca-card { min-width: 210px; padding: 14px 16px 14px 14px; }
    .marca-logo-wrap { width: 48px; height: 48px; }
}

/* ================================================
   HERO BANNER REUTILIZABLE (galería, mapa, marcas, testimonios)
   ================================================ */
.section-hero-banner {
    position: relative;
    height: 320px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.section-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(15,46,37,.35) 0%, rgba(15,46,37,.75) 100%);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center; padding: 24px;
}
.section-hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: #fff;
    letter-spacing: .06em;
    margin: 0 0 10px;
    text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.section-hero-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: .95rem;
    color: rgba(255,255,255,.85);
    margin: 0;
    max-width: 560px;
}

/* ================================================
   SECCIÓN MAPA
   ================================================ */
.section-mapa {
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
}
.section-mapa.has-bg-image {
    background-color: var(--accent-teal);
}
/* Watermark */
.section-mapa:not(.has-bg-image) .section-wm {
    position: absolute;
    top: -30px; left: -20px;
    font-family: var(--font-serif);
    font-size: 19vw;
    color: rgba(197,168,128,.065);
    font-weight: 700;
    line-height: .85;
    pointer-events: none;
    letter-spacing: -5px;
    user-select: none;
    z-index: 0;
}
.section-mapa > *:not(.section-wm):not(.section-bg-overlay) {
    position: relative;
    z-index: 1;
}
.mapa-body {
    padding: 56px 24px 80px;
    max-width: 960px;
    margin: 0 auto;
}
/* Título del mapa sin imagen: colores del sistema */
.section-mapa:not(.has-bg-image) .section-main-title {
    font-family: var(--font-serif);
    color: var(--accent-teal);
}
.section-mapa:not(.has-bg-image) .section-subtitle-text {
    color: var(--text-muted);
}
.mapa-direccion-text {
    text-align: center;
    font-size: .92rem;
    margin: 0 0 28px;
    font-family: var(--font-sans);
}
.mapa-direccion-link {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dashed currentColor;
    transition: opacity .2s;
}
.mapa-direccion-link:hover { opacity: .7; }
.mapa-landing-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.mapa-iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: none;
}
.mapa-fallback {
    background: var(--accent-teal-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    font-size: .95rem;
    color: var(--text-muted);
    text-align: center;
    padding: 20px;
}
@media (max-width: 680px) {
    .section-hero-banner { height: 220px; }
    .section-hero-title { font-size: 1.6rem; }
    .mapa-iframe { height: 300px; }
    .mapa-body { padding: 36px 16px 60px; }
}

