/* ====== VARIABLES ====== */
:root {
    --color-cream: #fff7ed;
    --color-peach: #ffe5d4;
    --color-pink: #ffc4d6;
    --color-rose: #ff8fab;
    --color-coral: #ff7f50;
    --color-mint: #b8e6c8;
    --color-sage: #a8c9a0;
    --color-lavender: #d4b8ff;
    --color-sky: #b8e0ff;
    --color-yellow: #ffe9a3;
    --color-text: #3d2c2e;
    --color-text-soft: #6b5557;
    --color-bg: #fffaf5;
    --shadow-soft: 0 8px 30px rgba(255, 143, 171, 0.15);
    --shadow-card: 0 6px 20px rgba(61, 44, 46, 0.08);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 12px;
}

/* ====== RESET / BASE ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', system-ui, sans-serif;
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Fraunces', Georgia, serif;
    line-height: 1.2;
    font-weight: 600;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ====== NAVBAR ====== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 250, 245, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 196, 214, 0.3);
}

.nav-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-coral);
}

.logo-dot {
    color: var(--color-rose);
    margin-right: 4px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    color: var(--color-text-soft);
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--color-coral);
}

.nav-cta {
    background: var(--color-coral);
    color: white !important;
    padding: 10px 20px;
    border-radius: 100px;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 127, 80, 0.35);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--color-text);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ====== HERO ====== */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 24px 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #fff7ed 0%, #ffe5d4 50%, #ffc4d6 100%);
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    animation: float 8s ease-in-out infinite;
}

.blob-1 { width: 380px; height: 380px; background: var(--color-yellow); top: -100px; left: -100px; }
.blob-2 { width: 320px; height: 320px; background: var(--color-mint); bottom: -80px; right: -50px; animation-delay: -3s; }
.blob-3 { width: 260px; height: 260px; background: var(--color-lavender); top: 40%; left: 50%; animation-delay: -5s; }

@keyframes float {
    0%, 100% { transform: translate(0,0) scale(1); }
    50% { transform: translate(20px, -30px) scale(1.05); }
}

.hero-content {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-block;
    background: white;
    padding: 8px 18px;
    border-radius: 100px;
    font-weight: 700;
    color: var(--color-coral);
    margin-bottom: 24px;
    box-shadow: var(--shadow-soft);
    font-size: 0.95rem;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    margin-bottom: 24px;
    color: var(--color-text);
}

.accent { color: var(--color-coral); font-style: italic; }
.accent-2 {
    background: linear-gradient(120deg, var(--color-rose), var(--color-lavender));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
    display: inline-block;
    padding: 0 0.08em;
    line-height: 1.25;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-soft);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.25s ease;
    font-family: inherit;
}

.btn-primary {
    background: var(--color-coral);
    color: white;
    box-shadow: 0 8px 20px rgba(255, 127, 80, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(255, 127, 80, 0.45);
}

.btn-ghost {
    background: white;
    color: var(--color-text);
    border: 2px solid var(--color-peach);
}

.btn-ghost:hover {
    background: var(--color-peach);
    transform: translateY(-3px);
}

.hero-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255, 255, 255, 0.7);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-soft);
}

/* Hero image */
.hero-image {
    display: flex;
    justify-content: center;
    padding: 30px;
}

.image-frame {
    position: relative;
    width: 340px;
    height: 420px;
}

.image-frame img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transform: rotate(-2deg);
    transition: transform 0.4s ease;
    display: block;
}

.image-frame:hover img {
    transform: rotate(0deg) scale(1.02);
}

.frame-doodle {
    position: absolute;
    inset: -16px -16px 16px 16px;
    border: 3px dashed var(--color-coral);
    border-radius: var(--radius-lg);
    transform: rotate(3deg);
    pointer-events: none;
}

.sticker {
    position: absolute;
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-card);
    animation: bounce 4s ease-in-out infinite;
    z-index: 3;
    color: var(--color-coral);
}

.sticker-1 { top: 20px; left: -30px; animation-delay: -1s; }
.sticker-2 { top: 45%; right: -30px; animation-delay: -2.5s; }
.sticker-3 { bottom: 30px; left: -20px; animation-delay: -3.5s; }

@keyframes bounce {
    0%, 100% { transform: translateY(0) rotate(-8deg); }
    50% { transform: translateY(-12px) rotate(8deg); }
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-coral);
    animation: scroll 2s ease-in-out infinite;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-card);
}

.scroll-down [data-lucide] {
    width: 22px;
    height: 22px;
}

@keyframes scroll {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 10px); }
}

/* ====== SECTIONS ====== */
.section {
    padding: 100px 0;
    position: relative;
}

.section-head {
    max-width: 720px;
    margin-bottom: 60px;
}

.section-head.center {
    margin: 0 auto 60px;
    text-align: center;
}

.kicker {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-coral);
    margin-bottom: 16px;
    background: white;
    padding: 6px 14px;
    border-radius: 100px;
    box-shadow: var(--shadow-card);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--color-text);
}

.section-title em {
    color: var(--color-coral);
    font-style: italic;
}

.section-sub {
    margin-top: 16px;
    font-size: 1.1rem;
    color: var(--color-text-soft);
}

/* ====== SOBRE MÍ ====== */
.sobre-mi {
    background: var(--color-bg);
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 24px;
}

.sobre-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sobre-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(61, 44, 46, 0.12);
}

.sobre-card-main {
    grid-row: span 2;
    background: linear-gradient(135deg, var(--color-peach), var(--color-pink));
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    font-size: 1.05rem;
}

.card-emoji {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

/* ====== ICONOS LUCIDE ====== */
[data-lucide] {
    width: 1em;
    height: 1em;
    stroke-width: 2;
    display: inline-block;
    vertical-align: -0.125em;
    flex-shrink: 0;
}

.hero-eyebrow [data-lucide] { width: 18px; height: 18px; vertical-align: -3px; }
.btn [data-lucide] { width: 18px; height: 18px; vertical-align: -3px; margin-right: 4px; }
.tag [data-lucide] { width: 16px; height: 16px; vertical-align: -3px; margin-right: 4px; }

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--color-peach);
    color: var(--color-coral);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.card-icon [data-lucide] { width: 26px; height: 26px; }

.sobre-card:hover .card-icon {
    transform: rotate(-8deg) scale(1.08);
    background: var(--color-coral);
    color: white;
}

.mirada-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.mirada-icon [data-lucide] { width: 32px; height: 32px; }

.mirada-1 .mirada-icon { background: rgba(255, 127, 80, 0.15); color: var(--color-coral); }
.mirada-2 .mirada-icon { background: rgba(168, 201, 160, 0.25); color: #6b9a78; }
.mirada-3 .mirada-icon { background: rgba(212, 184, 255, 0.25); color: #8b6bc9; }
.mirada-4 .mirada-icon { background: rgba(184, 224, 255, 0.3); color: #5a93c4; }

.mirada-item:hover .mirada-icon { transform: scale(1.1) rotate(8deg); }

.chip [data-lucide] {
    width: 18px;
    height: 18px;
    vertical-align: -3px;
    margin-right: 6px;
    color: var(--color-coral);
}

.servicio-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--color-peach);
    color: var(--color-coral);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.4s ease;
}

.servicio-icon [data-lucide] { width: 34px; height: 34px; }

.servicio-card:hover .servicio-icon {
    transform: scale(1.1) rotate(-8deg);
    background: var(--color-coral);
    color: white;
}

.modalidad-list li [data-lucide] {
    width: 22px;
    height: 22px;
    color: var(--color-coral);
    flex-shrink: 0;
}

.modalidad-list li {
    display: flex;
    align-items: center;
    gap: 14px;
}

.modalidad-list li > span { display: none; }

.circle [data-lucide] { width: 40px; height: 40px; color: white; }

.contacto-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--color-peach);
    color: var(--color-coral);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: transform 0.3s ease;
}

.contacto-icon [data-lucide] { width: 32px; height: 32px; }

.contacto-card:not(.static):hover .contacto-icon {
    transform: scale(1.1) rotate(-8deg);
    background: var(--color-coral);
    color: white;
}

.contacto-cta [data-lucide] { width: 16px; height: 16px; vertical-align: -2px; margin-left: 4px; }
.footer-mini [data-lucide] { width: 14px; height: 14px; color: var(--color-rose); vertical-align: -2px; margin: 0 4px; }

.sticker [data-lucide] { width: 26px; height: 26px; color: var(--color-coral); }

.sobre-card h3 {
    margin-bottom: 8px;
    font-size: 1.3rem;
}

/* ====== MIRADA ====== */
.mirada {
    background: linear-gradient(180deg, var(--color-bg) 0%, #fef3e2 100%);
}

.mirada-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.mirada-item {
    background: white;
    padding: 32px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    border-top: 4px solid;
    position: relative;
    overflow: hidden;
}

.mirada-1 { border-color: var(--color-coral); }
.mirada-2 { border-color: var(--color-sage); }
.mirada-3 { border-color: var(--color-lavender); }
.mirada-4 { border-color: var(--color-sky); }

.mirada-item:hover {
    transform: translateY(-8px) rotate(-1deg);
}

.mirada-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.mirada-item h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

/* ====== ACOMPAÑAR (CHIPS) ====== */
.acompanar {
    background: var(--color-bg);
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.chip {
    background: white;
    padding: 14px 22px;
    border-radius: 100px;
    font-weight: 600;
    color: var(--color-text);
    box-shadow: var(--shadow-card);
    border: 2px solid transparent;
    transition: all 0.25s ease;
    cursor: default;
    font-size: 0.95rem;
}

.chip:hover {
    transform: translateY(-3px) rotate(-2deg);
    border-color: var(--color-coral);
    background: var(--color-peach);
}

/* ====== CÓMO TRABAJO ====== */
.como-trabajo {
    background: linear-gradient(180deg, #fef3e2 0%, var(--color-bg) 100%);
}

.pasos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.paso {
    background: white;
    padding: 32px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    position: relative;
    transition: transform 0.3s ease;
}

.paso:hover { transform: translateY(-6px); }

.paso-num {
    position: absolute;
    top: -20px;
    left: 24px;
    width: 50px;
    height: 50px;
    background: var(--color-coral);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 127, 80, 0.4);
}

.paso h3 {
    margin: 20px 0 8px;
    font-size: 1.3rem;
}

/* ====== SERVICIOS ====== */
.servicios {
    background: var(--color-bg);
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.servicio-card {
    background: white;
    padding: 40px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: all 0.3s ease;
    border-bottom: 4px solid var(--color-peach);
}

.servicio-card:hover {
    transform: translateY(-8px);
    border-bottom-color: var(--color-coral);
    box-shadow: 0 16px 36px rgba(61, 44, 46, 0.12);
}

.servicio-icon {
    font-size: 3.5rem;
    margin-bottom: 16px;
    display: inline-block;
    transition: transform 0.4s ease;
}

.servicio-card:hover .servicio-icon {
    transform: scale(1.15) rotate(-8deg);
}

.servicio-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.servicio-card h3 {
    margin-bottom: 12px;
    font-size: 1.35rem;
}

/* ====== MODALIDAD ====== */
.modalidad {
    background: linear-gradient(135deg, #fff7ed 0%, #ffe5d4 100%);
}

.modalidad-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 60px;
    box-shadow: var(--shadow-soft);
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.modalidad-card::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--color-yellow);
    border-radius: 50%;
    top: -80px;
    right: -80px;
    opacity: 0.4;
}

.modalidad-text h2 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.modalidad-text > p {
    color: var(--color-text-soft);
    margin-bottom: 24px;
}

.modalidad-list {
    list-style: none;
    margin: 28px 0;
}

.modalidad-list li {
    padding: 12px 0;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px dashed var(--color-peach);
}

.modalidad-list li span {
    font-size: 1.4rem;
}

.modalidad-illustration {
    position: relative;
    height: 280px;
}

.circle {
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    box-shadow: var(--shadow-card);
    animation: float-circle 6s ease-in-out infinite;
}

.c1 { background: var(--color-pink); top: 0; left: 0; }
.c2 { background: var(--color-mint); top: 0; right: 0; animation-delay: -1.5s; }
.c3 { background: var(--color-lavender); bottom: 0; left: 30%; animation-delay: -3s; }
.c4 { background: var(--color-yellow); bottom: 20px; right: 10%; animation-delay: -4.5s; }

@keyframes float-circle {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-15px) rotate(10deg); }
}

/* ====== CONTACTO ====== */
.contacto {
    background: linear-gradient(135deg, var(--color-coral), var(--color-rose));
    color: white;
}

.contacto-wrap {
    text-align: center;
}

.contacto .section-title { color: white; }

.contacto-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.contacto-card {
    background: white;
    color: var(--color-text);
    padding: 36px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: all 0.3s ease;
    display: block;
}

.contacto-card.static { cursor: default; }

.contacto-card:not(.static):hover {
    transform: none;
    box-shadow: 0 12px 28px rgba(0,0,0,0.14);
}

.contacto-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.contacto-card h3 {
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.contacto-card p {
    color: var(--color-text-soft);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.contacto-cta {
    color: var(--color-coral);
    font-weight: 700;
    font-size: 0.95rem;
}

.contacto-note {
    margin-top: 32px;
    font-size: 0.85rem;
    color: var(--color-text-soft);
    font-style: italic;
}

/* ====== FOOTER ====== */
.footer {
    background: var(--color-text);
    color: rgba(255,255,255,0.8);
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer .logo { color: var(--color-pink); }
.footer-mini { font-size: 0.9rem; }

/* ====== REVEAL ANIMATION ====== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
    .nav-toggle { display: flex; }

    .nav-links {
        position: fixed;
        top: 70px;
        right: 0;
        background: white;
        flex-direction: column;
        width: 280px;
        height: calc(100vh - 70px);
        padding: 40px 24px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.08);
        align-items: flex-start;
        gap: 20px;
    }

    .nav-links.open { transform: translateX(0); }

    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-buttons, .hero-tags { justify-content: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .image-frame { width: 260px; height: 320px; margin: 0 auto; }

    .sobre-grid { grid-template-columns: 1fr; }
    .sobre-card-main { grid-row: auto; }

    .mirada-grid { grid-template-columns: repeat(2, 1fr); }
    .pasos, .servicios-grid, .contacto-cards { grid-template-columns: 1fr; }

    .modalidad-card {
        grid-template-columns: 1fr;
        padding: 40px 28px;
    }

    .modalidad-illustration { height: 200px; }
    .circle { width: 80px; height: 80px; font-size: 2.2rem; }
}

@media (max-width: 500px) {
    .mirada-grid { grid-template-columns: 1fr; }
    .section { padding: 70px 0; }
}

/* ====== IDENTIDAD VISUAL DE LA TARJETA ====== */
:root {
    --color-cream: #f7f3eb;
    --color-peach: #e4d3bb;
    --color-pink: #d9c7ad;
    --color-rose: #b2a067;
    --color-coral: #1f4f48;
    --color-mint: #dce5dc;
    --color-sage: #73958b;
    --color-lavender: #d9d5c6;
    --color-sky: #c8d8d1;
    --color-yellow: #eadb9c;
    --color-text: #292820;
    --color-text-soft: #5d5b51;
    --color-bg: #f7f3eb;
    --shadow-soft: 0 16px 40px rgba(41, 40, 32, 0.1);
    --shadow-card: 0 5px 18px rgba(41, 40, 32, 0.07);
    --radius-lg: 4px;
    --radius-md: 3px;
    --radius-sm: 2px;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--color-bg);
    line-height: 1.75;
}

h1, h2, h3, h4, .logo, .paso-num {
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.navbar {
    background: var(--color-bg);
    border-bottom: 1px solid rgba(31, 79, 72, 0.18);
    backdrop-filter: none;
    isolation: isolate;
}

.logo {
    color: var(--color-text);
    letter-spacing: 0.04em;
}

.logo-dot { color: var(--color-coral); }

.nav-links a {
    color: var(--color-text-soft);
    font-weight: 500;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
}

.nav-links a:hover { color: var(--color-coral); }

.nav-cta, .btn-primary {
    background: var(--color-coral);
    border-radius: 2px;
    box-shadow: none;
}

.nav-cta:hover, .btn-primary:hover {
    background: #173f3a;
    box-shadow: 0 8px 18px rgba(31, 79, 72, 0.2);
}

.hero {
    min-height: 820px;
    padding: 130px 24px 80px;
    background: var(--color-peach);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 64%, rgba(247, 243, 235, 0.18));
    pointer-events: none;
}

.hero-blob { display: none; }

.hero-content { grid-template-columns: 1fr 1fr; gap: 30px; }

.hero-eyebrow {
    background: transparent;
    padding: 0;
    border-radius: 0;
    color: var(--color-coral);
    box-shadow: none;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-eyebrow [data-lucide] { display: none; }

.hero-title {
    max-width: 720px;
    font-size: clamp(3.3rem, 6vw, 5.5rem);
    line-height: 0.96;
    letter-spacing: -0.02em;
}

.accent, .accent-2, .section-title em {
    color: var(--color-coral);
    background: none;
    -webkit-text-fill-color: initial;
    font-style: normal;
}

.hero-subtitle {
    max-width: 580px;
    color: var(--color-text);
    font-size: 1.02rem;
}

.btn { border-radius: 2px; font-size: 0.82rem; letter-spacing: 0.02em; }

.btn-ghost {
    background: transparent;
    border: 1px solid var(--color-coral);
    color: var(--color-coral);
}

.btn-ghost:hover { background: rgba(31, 79, 72, 0.08); }

.hero-tags { gap: 22px; }

.tag {
    background: transparent;
    border-bottom: 1px solid rgba(31, 79, 72, 0.35);
    border-radius: 0;
    padding: 6px 0;
    color: var(--color-text);
    font-size: 0.72rem;
    letter-spacing: 0.04em;
}

.hero-image { position: relative; z-index: 1; padding: 0; }
.image-frame { display: none; }

.hero-mark {
    width: min(600px, 100%);
    height: 700px;
    position: relative;
}

.hero-mark img {
    width: 235px;
    height: 425px;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 138px;
    left: 152px;
    z-index: 1;
    border: 8px solid var(--color-cream);
    box-shadow: 0 14px 30px rgba(41, 40, 32, 0.14);
}

.organic-lines, .modalidad-lines { width: 100%; height: 100%; overflow: visible; }
.organic-lines {
    width: 1000px;
    height: 700px;
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}
.hero-mark img { z-index: 3; }
.line { stroke: none; stroke-linejoin: round; }
.line-green { fill: var(--color-coral); }
.line-yellow { fill: var(--color-yellow); }
.line-green-soft { fill: var(--color-sage); }

.scroll-down { background: transparent; color: var(--color-coral); box-shadow: none; animation: none !important; }

.section { padding: 110px 0; }
.kicker {
    background: transparent;
    box-shadow: none;
    border-bottom: 1px solid var(--color-yellow);
    border-radius: 0;
    padding: 0 0 7px;
    color: var(--color-coral);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
}
.section-title { font-size: clamp(2.4rem, 4vw, 3.6rem); line-height: 1; }
.section-sub { font-size: 0.94rem; }

.sobre-mi, .acompanar, .servicios { background: var(--color-bg); }
.mirada, .como-trabajo { background: #eee9df; }
.sobre-grid, .mirada-grid, .pasos, .servicios-grid { gap: 16px; }

.sobre-card, .mirada-item, .paso, .servicio-card, .contacto-card {
    border-radius: 2px;
    box-shadow: none;
    border: 1px solid rgba(41, 40, 32, 0.12);
}

.sobre-card:hover, .mirada-item:hover, .paso:hover, .servicio-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.sobre-card-main { background: var(--color-coral); color: var(--color-cream); }
.card-icon, .servicio-icon, .contacto-icon { border-radius: 50%; background: var(--color-peach); color: var(--color-coral); }
.sobre-card:hover .card-icon, .servicio-card:hover .servicio-icon, .contacto-card:not(.static):hover .contacto-icon { background: var(--color-coral); }

.mirada-item { border-top-width: 2px; background: var(--color-bg); }
.mirada-1, .mirada-2, .mirada-3, .mirada-4 { border-color: var(--color-coral); }
.mirada-1 .mirada-icon, .mirada-2 .mirada-icon, .mirada-3 .mirada-icon, .mirada-4 .mirada-icon { background: var(--color-peach); color: var(--color-coral); }

.chip { border-radius: 2px; background: transparent; border: 1px solid rgba(31, 79, 72, 0.25); box-shadow: none; font-size: 0.83rem; font-weight: 500; }
.chip:hover { transform: translateY(-2px); border-color: var(--color-coral); background: var(--color-peach); }
.chip [data-lucide] { color: var(--color-coral); }

.chips-disclosure {
    flex-basis: 100%;
    margin-top: 12px;
    text-align: center;
}

.chips-disclosure summary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
    padding: 10px 16px;
    border: 1px solid var(--color-coral);
    border-radius: 2px;
    background: transparent;
    color: var(--color-coral);
    font: 600 0.8rem 'Montserrat', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    list-style: none;
}

.chips-disclosure summary::-webkit-details-marker { display: none; }
.chips-disclosure summary:hover { background: var(--color-coral); color: #fff; }
.chips-disclosure summary [data-lucide] { width: 16px; height: 16px; }
.chips-disclosure[open] summary [data-lucide] { transform: rotate(180deg); }
.chips-disclosure .chips-extra { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; max-width: 900px; margin: 24px auto 0; }

.paso-num { background: var(--color-coral); border-radius: 50%; box-shadow: none; }
.servicio-card { border-bottom: 2px solid var(--color-coral); }
.servicio-card:hover { border-bottom-color: var(--color-coral); }

.modalidad { background: var(--color-peach); }
.modalidad-card { border-radius: 2px; box-shadow: none; border: 1px solid rgba(31, 79, 72, 0.16); }
.modalidad-card::before { background: var(--color-yellow); border-radius: 50%; }
.modalidad-illustration { height: 280px; }
.modalidad-lines { position: absolute; width: 800px; height: 440px; right: -190px; top: -20px; z-index: 1; }

.contacto { background: var(--color-coral); }
.contacto .section-sub { color: #fff; }
.contacto-card { background: var(--color-bg); }
.contacto-cta { color: var(--color-coral); }
.contacto-card.reveal { transition: opacity 0.8s ease; }
.footer { background: #292820; }
.footer .logo { color: var(--color-yellow); }
.footer-mini [data-lucide] { color: var(--color-yellow); }

@media (max-width: 900px) {
    .hero { min-height: auto; padding-top: 130px; }
    .hero-content {
        grid-template-columns: minmax(0, 1fr);
        gap: 30px;
        width: calc(100vw - 48px);
        max-width: calc(100vw - 48px);
        text-align: center;
    }
    .hero-text { width: 100%; max-width: 100%; min-width: 0; }
    .hero-eyebrow { display: block; font-size: 0.68rem; letter-spacing: 0.12em; }
    .hero-title {
        width: auto;
        max-width: 100%;
        padding: 0 4px;
        font-size: clamp(2.65rem, 11vw, 3.3rem);
        line-height: 0.98;
        overflow-wrap: normal;
    }
    .hero-subtitle {
        width: auto;
        max-width: 34rem;
        margin-left: auto;
        margin-right: auto;
        padding: 0 4px;
        font-size: 0.95rem;
    }
    .hero-buttons, .hero-tags { justify-content: center; }
    .hero-image { width: 100vw; margin-left: -24px; padding: 15px 0 0; }
    .hero-mark { width: 100vw; height: 520px; margin: 0; }
    .hero-mark img {
        width: 165px;
        height: 280px;
        top: 92px;
        left: 50%;
        transform: translateX(-50%);
        border-width: 5px;
    }
    .organic-lines {
        width: 520px;
        height: 350px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) rotate(90deg);
        transform-origin: center;
    }
    .modalidad-lines { width: 700px; height: 385px; right: -220px; top: -10px; }
    .hero::after { inset: 45% 0 0 60%; }
}
