@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
    --bg: #ffffff;
    --primary: #2f0b72;
    --secondary: #ac22d4;
    --accent: #ff93b5;
    --soft: #ffb8e9;
    --text: #1a1a2e;
    --text-muted: #5a5a7a;
    --surface: #fff0f9;
    --border: #f5d5eb;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--bg);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

/* ── NAVIGATION ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 2rem;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
}

.nav-logo span {
    color: var(--secondary);
}

.nav-logo-img {
    height: 40px;
    width: auto;
    margin-left: 12px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 0.03em;
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.nav-links a:hover {
    background: #ffb8e9;
    color: var(--primary);
}

.nav-cta {
    background: var(--primary) !important;
    color: #fff !important;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    background: #ffb8e9 !important;
    color: var(--primary) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: 0.3s;
}

/* ── SECTIONS ── */
section {
    padding: 96px 2rem;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.8;
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.25s ease;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(47, 11, 114, 0.25);
}

.btn-secondary {
    background: var(--accent);
    color: var(--primary);
}

.btn-secondary:hover {
    background: var(--soft);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.btn-ghost {
    background: var(--surface);
    color: var(--secondary);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    background: var(--soft);
    border-color: var(--accent);
}

/* ── HERO ── */
#home {
    padding-top: 140px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, #fdf8ff 0%, #f5eaff 50%, #fff0f7 100%);
    position: relative;
    overflow: hidden;
}

#home::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(172, 34, 212, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

#home::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 147, 181, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: var(--soft);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--primary);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.hero-title em {
    font-style: italic;
    color: var(--secondary);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-image-area {
    position: relative;
}

.hero-img-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 32px 8px 32px 8px;
    background: linear-gradient(135deg, var(--soft) 0%, #e8d5ff 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-align: center;
    gap: 0.75rem;
    border: 2px dashed var(--border);
    overflow: hidden;
    position: relative;
}

.hero-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    display: none;
}

.hero-img-placeholder .placeholder-icon {
    font-size: 3rem;
    opacity: 0.4;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* ── SOBRE MÍ ── */
#sobre-mi {
    background: var(--bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-img-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 8px 32px 8px 32px;
    background: linear-gradient(160deg, #e8d5ff 0%, var(--soft) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-align: center;
    gap: 0.75rem;
    border: 2px dashed var(--border);
    overflow: hidden;
}

.about-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    display: none;
}

.about-content {}

.about-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: var(--secondary);
    border-left: 3px solid var(--accent);
    padding-left: 1.25rem;
    margin: 1.5rem 0;
    line-height: 1.5;
}

.about-body {
    color: var(--text-muted);
    line-height: 1.9;
}

.about-body p+p {
    margin-top: 1rem;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.tag {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--primary);
    font-size: 0.8rem;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-weight: 500;
}

/* ── SERVICIOS ── */
#servicios {
    background: linear-gradient(180deg, #ffffff 0%, var(--surface) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.25s, box-shadow 0.25s, background-color 0.4s ease;
}

.service-card.active {
    background-color: var(--surface);
    border-color: var(--soft);
}

.service-card.active .service-name {
    color: var(--secondary);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(47, 11, 114, 0.1);
}

.service-img {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--soft) 0%, #e0d0ff 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-img .placeholder-icon {
    font-size: 2.5rem;
    opacity: 0.35;
}

.service-body {
    padding: 1.75rem;
}

.service-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.service-variants {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.variant-tag {
    font-size: 0.72rem;
    background: var(--soft);
    color: var(--secondary);
    padding: 0.2rem 0.7rem;
    border-radius: 50px;
    font-weight: 500;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-benefits {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-benefits li {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 0.25rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.service-benefits li::before {
    content: '✦';
    color: var(--accent);
    font-size: 0.6rem;
    margin-top: 0.35rem;
    flex-shrink: 0;
}

/* ── LIFEWAVE ── */
#lifewave {
    background: #c4e6f6;
}

.lw-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.lw-patches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.patch-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.patch-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(47, 11, 114, 0.08);
}

.patch-img {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #f5eaff, var(--soft));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--secondary);
    gap: 0.4rem;
    position: relative;
    overflow: hidden;
}

.patch-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.patch-img .placeholder-icon {
    opacity: 0.5;
}

.patch-body {
    padding: 1.25rem;
}

.patch-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.4rem;
}

.patch-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.lw-cta-box {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 24px;
    padding: 3rem;
    color: #fff;
    text-align: center;
    margin-top: 3rem;
}

.lw-cta-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.lw-cta-box p {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-bottom: 1.5rem;
}

.lw-cta-box .btn {
    background: #fff;
    color: var(--primary);
}

.lw-cta-box .btn:hover {
    background: var(--soft);
}

/* ── LIBROS ── */
#libros {
    background: linear-gradient(180deg, #ffffff 0%, var(--surface) 100%);
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.book-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.book-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(47, 11, 114, 0.1);
}

.book-cover {
    width: 100%;
    aspect-ratio: 2/3;
    background: linear-gradient(160deg, #e0d0ff, var(--soft));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    gap: 0.5rem;
    overflow: hidden;
}

.book-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.book-cover .placeholder-icon {
    font-size: 2.5rem;
    opacity: 0.35;
}

.book-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.book-genre {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary);
    font-weight: 500;
}

.book-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.3;
}

.book-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
}

/* ── TESTIMONIOS ── */
#testimonios {
    background: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    color: var(--soft);
    position: absolute;
    top: -0.5rem;
    left: 1.5rem;
    line-height: 1;
    pointer-events: none;
}

.testimonial-stars {
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.testimonial-text {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    flex-shrink: 0;
}

.author-info {}

.author-name {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text);
}

.author-role {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ── CONTACTO ── */
#contacto {
    background: linear-gradient(135deg, var(--surface) 0%, #fff5fb 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-method-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--bg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-form {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    background: var(--surface);
    transition: border-color 0.2s;
    outline: none;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--secondary);
}

/* ── UBICACIÓN ── */
#ubicacion {
    background: #fff;
    padding-bottom: 0;
}

.location-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.location-details h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.location-address {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.location-address-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.location-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.map-container {
    width: 100%;
    height: 420px;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid var(--border);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-overlay {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    display: flex;
    gap: 0.5rem;
}

/* ── FOOTER ── */
footer {
    background: linear-gradient(90deg, #8c52ff, #5ce1e6);
    color: var(--primary);
    padding: 3rem 2rem 2rem;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(47, 11, 114, 0.1);
}

.footer-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.footer-brand-name span {
    color: var(--secondary);
}


.footer-tagline {
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(47, 11, 114, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.2s;
}

.social-btn:hover {
    background: var(--secondary);
}

.footer-col h4 {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li+li {
    margin-top: 0.5rem;
}

.footer-col ul li a {
    color: rgba(47, 11, 114, 0.75);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--secondary);
}

.footer-bottom {
    max-width: 1100px;
    margin: 2rem auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

/* ── FLOATING WA ── */
.wa-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.75rem;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    z-index: 99;
    transition: transform 0.2s, box-shadow 0.2s;
    animation: pulse-wa 3s infinite;
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
}

@keyframes pulse-wa {

    0%,
    100% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    }

    50% {
        box-shadow: 0 6px 32px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37, 211, 102, 0.1);
    }
}

/* ── ANIMATIONS ── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {

    .hero-inner,
    .about-grid,
    .lw-intro,
    .contact-grid,
    .location-info {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(12px);
        padding: 2rem;
        gap: 1.25rem;
        border-bottom: 1px solid var(--border);
        z-index: 99;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    section {
        padding: 64px 1.5rem;
    }

    .hero-stats {
        gap: 1.25rem;
    }

    .map-container {
        height: 300px;
    }
}

@media (max-width: 600px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        justify-content: center;
    }

    .location-actions {
        flex-direction: column;
    }

    .location-actions .btn {
        text-align: center;
        justify-content: center;
    }
}

/* ── FLOATING NAVIGATION ── */
.floating-nav {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 8px;
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(47, 11, 114, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    z-index: 1000;
    display: flex;
    gap: 4px;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.1), opacity 0.4s;
    opacity: 0;
    pointer-events: none;
}

.floating-nav.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: all;
}

.floating-nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 100px;
    transition: all 0.2s;
    white-space: nowrap;
}

.floating-nav a:hover {
    background: var(--soft);
    color: var(--primary);
}

.floating-nav a.active {
    background: var(--primary);
    color: #fff;
}

@media (max-width: 768px) {
    .floating-nav {
        width: 90%;
        overflow-x: auto;
        justify-content: flex-start;
        bottom: 16px;
        padding: 6px;
    }
    
    .floating-nav a {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
}

/* ── SUBRAYADO DECORATIVO (BRUSH STROKE) ── */
.titulo-brush {
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}

.titulo-brush::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -12px;
    width: 70%;
    height: 15px;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}

/* Rosa Neón (Masajes y Libros) */
.titulo-brush.rosa::after {
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 120 20' xmlns='http://www.w3.org/2000/svg'><path d='M5 10 Q30 2, 60 10 T115 10' stroke='%23ac22d4' stroke-width='8' fill='none' stroke-linecap='round'/></svg>");
    filter: drop-shadow(0 0 4px #ac22d4);
}

/* Degradado LifeWave (Cian a Azul) */
.titulo-brush.degradado::after {
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 120 20' xmlns='http://www.w3.org/2000/svg'><defs><linearGradient id='g' x1='0%' y1='0%' x2='100%' y2='0%'><stop offset='0%' stop-color='%235de0e6'/><stop offset='100%' stop-color='%23004aad'/></linearGradient></defs><path d='M5 10 Q30 2, 60 10 T115 10' stroke='url(%23g)' stroke-width='8' fill='none' stroke-linecap='round'/></svg>");
}

/* ═══════════════════════════════════════════════
   ── FRANJAS INFERIORES EN TARJETAS (BORDER) ──
   Franja gruesa redondeada en la base de la tarjeta
═══════════════════════════════════════════════ */

/* Contenedores base para las imágenes de perfil y hero */
.about-img-box {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    width: 100%;
    aspect-ratio: 3/4;
    /* Franja inferior rosa */
    border-bottom: 8px solid #d4638a;
    box-shadow: 0 8px 0 #d4638a, 0 12px 32px rgba(212, 99, 138, 0.18);
}

.about-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-img-box {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    width: 100%;
    aspect-ratio: 4/5;
    /* Franja inferior rosa – igual que perfil */
    border-bottom: 8px solid #d4638a;
    box-shadow: 0 8px 0 #d4638a, 0 12px 32px rgba(212, 99, 138, 0.18);
}

.hero-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* ── FRANJA: Tarjeta Masajes → Violeta ── */
.service-card {
    border-bottom: 8px solid #7a4db8 !important;
    border-radius: 24px !important;
    box-shadow: 0 8px 0 #7a4db8, 0 12px 32px rgba(122, 77, 184, 0.12) !important;
}

/* ── FRANJA: Tarjeta Parches LifeWave → Azul ── */
.patch-card {
    border-bottom: 8px solid #3070c8 !important;
    border-radius: 24px !important;
    box-shadow: 0 8px 0 #3070c8, 0 12px 32px rgba(48, 112, 200, 0.12) !important;
}

/* ── FRANJA: Tarjeta Libros → Rosa (Igual que perfil) ── */
.book-card {
    border-bottom: 8px solid #d4638a !important;
    border-radius: 24px !important;
    box-shadow: 0 8px 0 #d4638a, 0 12px 32px rgba(212, 99, 138, 0.18) !important;
}

/* Hover: elevar sin perder la franja */
.service-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 8px 0 #7a4db8, 0 24px 48px rgba(122, 77, 184, 0.18) !important;
}

.patch-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 0 #3070c8, 0 20px 40px rgba(48, 112, 200, 0.18) !important;
}

.book-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 0 #d4638a, 0 20px 40px rgba(212, 99, 138, 0.25) !important;
}