/* MINIE BEAUTY — Light Elegant Design */
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
    --bg-main:      #fffaf8;
    --bg-section:   #fff5f8;
    --bg-card:      #ffffff;
    --bg-soft:      #ffeef4;
    --bg-blush:     #ffd6e7;
    --pink:         #e8006b;
    --pink-bright:  #ff0080;
    --pink-light:   #ff69b4;
    --pink-pale:    #fff0f6;
    --pink-border:  #ffc0d9;
    --text-dark:    #1a0a10;
    --text-mid:     #5c3347;
    --text-soft:    #9e6b82;
    --white:        #ffffff;
    --border:       #f0d0df;
    --shadow-sm:    0 2px 16px rgba(232,0,107,0.07);
    --shadow-md:    0 8px 40px rgba(232,0,107,0.12);
    --shadow-lg:    0 20px 70px rgba(232,0,107,0.16);
    --font-brand:   'Great Vibes', cursive;
    --font-serif:   'Cormorant Garamond', serif;
    --font-sans:    'Jost', sans-serif;
    --radius-sm:    8px;
    --radius-lg:    16px;
    --radius-xl:    28px;
    --radius-pill:  50px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: var(--bg-main); color: var(--text-dark); line-height: 1.7; overflow-x: hidden; }
h1, h2, h3 { font-family: var(--font-serif); font-weight: 400; line-height: 1.15; color: var(--text-dark); }
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-family: var(--font-sans); font-size: 1rem; font-weight: 600; color: var(--text-dark); }
p  { color: var(--text-mid); line-height: 1.85; }
a  { text-decoration: none; color: inherit; }
em { font-style: italic; }
strong { color: var(--text-dark); font-weight: 600; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 3px; }

/* NAVBAR */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1rem 0; transition: all 0.4s ease; background: transparent; }
.navbar.scrolled { background: rgba(255,250,248,0.96); backdrop-filter: blur(20px); padding: 0.65rem 0; border-bottom: 1px solid var(--pink-border); box-shadow: 0 2px 20px rgba(232,0,107,0.08); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; }
.nav-logo { height: 48px; width: auto; object-fit: contain; transition: transform 0.3s, filter 0.3s; filter: drop-shadow(0 2px 8px rgba(232,0,107,0.2)); }
.nav-logo:hover { transform: scale(1.04); filter: drop-shadow(0 4px 16px rgba(232,0,107,0.4)); }
.nav-links { display: flex; align-items: center; gap: 0.2rem; list-style: none; }
.nav-link { font-family: var(--font-sans); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-mid); padding: 0.5rem 1rem; border-radius: var(--radius-pill); transition: all 0.25s ease; position: relative; }
.nav-link::after { content: ''; position: absolute; bottom: 2px; left: 50%; right: 50%; height: 1.5px; background: var(--pink); border-radius: 2px; transition: all 0.3s ease; }
.nav-link:hover { color: var(--pink); }
.nav-link:hover::after, .nav-link.active::after { left: 1rem; right: 1rem; }
.nav-link.active { color: var(--pink); }
.nav-cta { background: var(--pink); color: var(--white) !important; border-radius: var(--radius-pill); padding: 0.55rem 1.4rem; font-weight: 600; box-shadow: 0 4px 16px rgba(232,0,107,0.3); }
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--pink-bright); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(232,0,107,0.45); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text-dark); transition: all 0.3s; }

/* BUTTONS */
.btn-primary { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--pink); color: var(--white); padding: 0.9rem 2rem; border-radius: var(--radius-pill); font-family: var(--font-sans); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; transition: all 0.3s ease; border: none; cursor: pointer; box-shadow: 0 4px 20px rgba(232,0,107,0.3); }
.btn-primary:hover { background: var(--pink-bright); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,0,107,0.45); color: var(--white); }
.btn-outline { display: inline-flex; align-items: center; gap: 0.5rem; background: transparent; color: var(--text-dark); padding: 0.9rem 2rem; border-radius: var(--radius-pill); font-family: var(--font-sans); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; border: 1.5px solid var(--pink-border); transition: all 0.3s ease; cursor: pointer; }
.btn-outline:hover { border-color: var(--pink); color: var(--pink); transform: translateY(-2px); }

/* HERO */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; background: linear-gradient(135deg, var(--white) 0%, var(--bg-soft) 50%, var(--bg-blush) 100%); }
.hero-orb { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(80px); }
.hero-orb-1 { width: 550px; height: 550px; background: radial-gradient(circle, rgba(255,105,180,0.22) 0%, transparent 70%); top: -150px; right: -120px; animation: orbFloat1 10s ease-in-out infinite; }
.hero-orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(232,0,107,0.10) 0%, transparent 70%); bottom: -60px; left: -100px; animation: orbFloat2 13s ease-in-out infinite; }
.hero-orb-3 { width: 250px; height: 250px; background: radial-gradient(circle, rgba(255,182,193,0.30) 0%, transparent 70%); top: 35%; left: 35%; animation: orbFloat2 8s ease-in-out infinite; }
@keyframes orbFloat1 { 0%,100%{ transform:translateY(0) scale(1); } 50%{ transform:translateY(40px) scale(1.08); } }
@keyframes orbFloat2 { 0%,100%{ transform:translateY(0) scale(1); } 50%{ transform:translateY(-35px) scale(0.93); } }

.hero-inner { max-width: 1200px; margin: 0 auto; padding: 9rem 2rem 5rem; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 4rem; position: relative; z-index: 1; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--pink); margin-bottom: 1.5rem; padding: 0.45rem 1.2rem; border: 1px solid var(--pink-border); border-radius: var(--radius-pill); background: var(--pink-pale); }
.hero-eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--pink); border-radius: 50%; animation: blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100%{ opacity:1; } 50%{ opacity:0.25; } }
.hero-title { font-family: var(--font-serif); color: var(--text-dark); margin-bottom: 1.5rem; }
.hero-title .brand-script { font-family: var(--font-brand); font-size: 1.3em; color: var(--pink); display: block; line-height: 1; margin-bottom: 0.1em; text-shadow: 0 2px 20px rgba(232,0,107,0.25); animation: scriptGlow 4s ease-in-out infinite; }
@keyframes scriptGlow { 0%,100%{ text-shadow:0 2px 20px rgba(232,0,107,0.2); } 50%{ text-shadow:0 4px 35px rgba(232,0,107,0.45); } }
.hero-subtitle { font-size: 1rem; line-height: 1.85; margin-bottom: 2.5rem; max-width: 440px; color: var(--text-mid); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 2.5rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--pink-border); }
.stat-num { font-family: var(--font-brand); font-size: 2.4rem; color: var(--pink); display: block; line-height: 1; }
.stat-label { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-soft); margin-top: 0.3rem; display: block; }
.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; }
.hero-logo-showcase { position: relative; width: 360px; height: 360px; display: flex; align-items: center; justify-content: center; }
.hero-logo-ring { position: absolute; inset: 0; border-radius: 50%; border: 1.5px solid rgba(232,0,107,0.18); animation: ringPulse 4s ease-in-out infinite; }
.hero-logo-ring:nth-child(2) { inset: 22px; border-color: rgba(232,0,107,0.11); animation-delay: 0.6s; }
.hero-logo-ring:nth-child(3) { inset: 44px; border-color: rgba(232,0,107,0.06); animation-delay: 1.2s; }
@keyframes ringPulse { 0%,100%{ transform:scale(1); opacity:1; } 50%{ transform:scale(1.04); opacity:0.5; } }
.hero-logo-img { width: 250px; height: 250px; object-fit: contain; position: relative; z-index: 1; filter: drop-shadow(0 4px 24px rgba(232,0,107,0.3)); animation: logoFloat 5s ease-in-out infinite; }
@keyframes logoFloat { 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-10px); } }
.hero-badge { position: absolute; background: var(--white); border: 1px solid var(--pink-border); border-radius: var(--radius-pill); padding: 0.5rem 1.2rem; font-size: 0.78rem; font-weight: 500; color: var(--text-dark); white-space: nowrap; box-shadow: var(--shadow-md); }
.hero-badge span { color: var(--pink); margin-right: 0.3rem; }
.hero-badge-1 { top: 30px; left: -15px; }
.hero-badge-2 { bottom: 50px; right: -15px; }

/* SECTIONS */
.section { padding: 6rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; max-width: 620px; margin: 0 auto 4rem; }
.section-label { display: inline-block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--pink); margin-bottom: 1rem; padding: 0.35rem 1rem; border: 1px solid var(--pink-border); border-radius: var(--radius-pill); background: var(--pink-pale); }
.section-title { color: var(--text-dark); margin-bottom: 1rem; }
.section-title em { color: var(--pink); }
.section-sub { color: var(--text-mid); max-width: 480px; margin: 0 auto; }
.divider { width: 52px; height: 2px; background: linear-gradient(90deg,transparent,var(--pink),transparent); margin: 1.5rem auto; border-radius: 2px; }

/* SERVICE CARDS */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); gap: 1.5rem; }
.service-card { background: var(--white); border: 1px solid var(--pink-border); border-radius: var(--radius-xl); padding: 2.5rem 2rem; transition: all 0.35s ease; position: relative; overflow: hidden; box-shadow: var(--shadow-sm); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg,var(--pink-light),var(--pink)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--pink); }
.service-card:hover::before { transform: scaleX(1); }
.service-emoji { font-size: 2.5rem; margin-bottom: 1.2rem; display: block; }
.service-card h3 { color: var(--text-dark); margin-bottom: 0.7rem; font-size: 1.3rem; }
.service-card p { font-size: 0.9rem; }
.service-detail { margin-top: 1.2rem; display: flex; gap: 1rem; font-size: 0.75rem; color: var(--pink); font-weight: 600; letter-spacing: 0.05em; }

/* PAGE HERO */
.page-hero { background: linear-gradient(135deg,var(--white) 0%,var(--bg-soft) 60%,var(--bg-blush) 100%); padding: 9rem 2rem 5rem; text-align: center; position: relative; overflow: hidden; border-bottom: 1px solid var(--pink-border); }
.page-hero::before { content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 700px; height: 400px; background: radial-gradient(ellipse,rgba(255,105,180,0.18) 0%,transparent 70%); pointer-events: none; }
.page-hero-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero-label { display: inline-block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--pink); margin-bottom: 1.2rem; padding: 0.35rem 1rem; border: 1px solid var(--pink-border); border-radius: var(--radius-pill); background: var(--pink-pale); }
.page-hero h1 { font-style: italic; color: var(--text-dark); margin-bottom: 1rem; }
.page-hero p { max-width: 500px; margin: 0 auto; }

/* HISTORIA */
.historia-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.historia-visual { display: flex; flex-direction: column; gap: 1.5rem; }
.historia-image-placeholder { border-radius: var(--radius-xl); background: linear-gradient(135deg,var(--bg-soft),var(--bg-blush)); border: 1px solid var(--pink-border); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; font-size: 5rem; position: relative; overflow: hidden; box-shadow: var(--shadow-md); }
.historia-quote { background: var(--white); border-left: 3px solid var(--pink); padding: 1.5rem 1.8rem; border-radius: 0 var(--radius-lg) var(--radius-lg) 0; border-top: 1px solid var(--pink-border); border-right: 1px solid var(--pink-border); border-bottom: 1px solid var(--pink-border); font-family: var(--font-serif); font-style: italic; font-size: 1.1rem; color: var(--text-mid); box-shadow: var(--shadow-sm); }
.historia-content h2 { text-align: left; margin-bottom: 1.5rem; }
.historia-content p { font-size: 0.96rem; margin-bottom: 1.2rem; line-height: 1.9; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2rem; }
.value-card { text-align: center; padding: 1.8rem 1rem; background: var(--white); border: 1px solid var(--pink-border); border-radius: var(--radius-lg); transition: all 0.3s; box-shadow: var(--shadow-sm); }
.value-card:hover { border-color: var(--pink); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-card .emoji { font-size: 1.8rem; display: block; margin-bottom: 0.6rem; }
.value-card h4 { color: var(--text-dark); margin-bottom: 0.4rem; font-size: 0.9rem; }
.value-card p { font-size: 0.82rem; }

/* SERVICES PAGE */
.service-full-card { background: var(--white); border: 1px solid var(--pink-border); border-radius: var(--radius-xl); overflow: hidden; display: grid; grid-template-columns: 260px 1fr; transition: all 0.3s; margin-bottom: 1.5rem; box-shadow: var(--shadow-sm); }
.service-full-card:hover { border-color: var(--pink); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-full-card:nth-child(even) { direction: rtl; }
.service-full-card:nth-child(even) > * { direction: ltr; }
.service-visual { background: linear-gradient(135deg,var(--bg-soft),var(--bg-blush)); display: flex; align-items: center; justify-content: center; font-size: 5rem; min-height: 200px; border-right: 1px solid var(--pink-border); position: relative; overflow: hidden; }
.service-visual::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at center,rgba(232,0,107,0.07) 0%,transparent 70%); }
.service-info { padding: 2.5rem; }
.service-info h3 { color: var(--text-dark); margin-bottom: 0.8rem; }
.service-info p { font-size: 0.93rem; line-height: 1.85; margin-bottom: 1.5rem; }
.service-includes { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.service-tag { font-size: 0.72rem; padding: 0.3rem 0.85rem; background: var(--pink-pale); color: var(--pink); border-radius: var(--radius-pill); border: 1px solid var(--pink-border); font-weight: 600; }
.service-meta { display: flex; gap: 2rem; align-items: center; flex-wrap: wrap; }
.service-price { font-family: var(--font-brand); font-size: 2.2rem; color: var(--pink); line-height: 1; }
.service-duration { font-size: 0.78rem; color: var(--text-soft); margin-top: 0.2rem; }

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 1.5rem; }
.blog-card { background: var(--white); border: 1px solid var(--pink-border); border-radius: var(--radius-xl); overflow: hidden; transition: all 0.35s ease; box-shadow: var(--shadow-sm); }
.blog-card:hover { transform: translateY(-8px); border-color: var(--pink); box-shadow: var(--shadow-lg); }
.blog-card-header { background: linear-gradient(135deg,var(--bg-soft),var(--bg-blush)); padding: 2.5rem; text-align: center; font-size: 3rem; border-bottom: 1px solid var(--pink-border); }
.blog-card-body { padding: 1.8rem; }
.blog-cat { font-size: 0.67rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--pink); margin-bottom: 0.7rem; display: block; }
.blog-card-body h3 { font-size: 1.1rem; color: var(--text-dark); margin-bottom: 0.7rem; font-family: var(--font-serif); }
.blog-card-body p { font-size: 0.87rem; line-height: 1.7; margin-bottom: 1rem; }
.blog-date { font-size: 0.73rem; color: var(--text-soft); }
.blog-read-more { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; font-weight: 600; color: var(--pink); letter-spacing: 0.06em; margin-top: 0.8rem; transition: gap 0.2s; text-transform: uppercase; }
.blog-read-more:hover { gap: 0.7rem; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-info h3 { font-style: italic; color: var(--text-dark); margin-bottom: 1.5rem; }
.contact-info p { font-size: 0.95rem; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; padding: 1.2rem; background: var(--white); border: 1px solid var(--pink-border); border-radius: var(--radius-lg); transition: all 0.3s; box-shadow: var(--shadow-sm); }
.contact-detail:hover { border-color: var(--pink); box-shadow: var(--shadow-md); }
.contact-detail-icon { font-size: 1.3rem; flex-shrink: 0; }
.contact-detail-text strong { display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pink); margin-bottom: 0.2rem; }
.contact-detail-text span { font-size: 0.88rem; color: var(--text-mid); }
.contact-form { background: var(--white); border: 1px solid var(--pink-border); border-radius: var(--radius-xl); padding: 3rem; box-shadow: var(--shadow-md); }
.form-group { margin-bottom: 1.4rem; }
.form-label { display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-mid); margin-bottom: 0.5rem; }
.form-control { width: 100%; padding: 0.85rem 1.2rem; border: 1.5px solid var(--pink-border); border-radius: var(--radius-lg); font-family: var(--font-sans); font-size: 0.93rem; color: var(--text-dark); background: var(--bg-main); transition: all 0.25s; outline: none; }
.form-control:focus { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(232,0,107,0.08); background: var(--white); }
.form-control::placeholder { color: var(--text-soft); opacity: 0.7; }
textarea.form-control { min-height: 130px; resize: vertical; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23e8006b' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.field-error { color: var(--pink); font-size: 0.76rem; margin-top: 0.4rem; display: block; }
.alert-success { background: var(--pink-pale); border: 1px solid var(--pink-border); border-radius: var(--radius-lg); padding: 1.2rem 1.5rem; color: var(--pink); font-size: 0.93rem; margin-bottom: 1.5rem; text-align: center; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* FOOTER */
.footer { background: linear-gradient(135deg,#2a0f1a 0%,#1a0a10 100%); padding: 5rem 2rem 0; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 3rem; padding-bottom: 4rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo { height: 52px; object-fit: contain; filter: drop-shadow(0 0 12px rgba(255,105,180,0.5)); }
.footer-brand p { font-size: 0.88rem; margin-top: 1rem; line-height: 1.75; color: rgba(255,255,255,0.6); }
.footer-links h4, .footer-contact h4 { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--pink-light); margin-bottom: 1.2rem; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a { font-size: 0.87rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: var(--pink-light); }
.footer-contact p { font-size: 0.87rem; margin-bottom: 0.6rem; color: rgba(255,255,255,0.6); }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 700; color: rgba(255,255,255,0.6); transition: all 0.25s; }
.footer-social a:hover { background: var(--pink); color: white; border-color: var(--pink); box-shadow: 0 0 15px rgba(232,0,107,0.5); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding: 1.5rem 0; text-align: center; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

/* PROMO STRIP */
.promo-strip { background: linear-gradient(90deg,var(--pink),var(--pink-bright),var(--pink)); background-size: 200% 100%; animation: shimmer 4s ease-in-out infinite; color: white; text-align: center; padding: 0.85rem; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
@keyframes shimmer { 0%,100%{ background-position:0% 50%; } 50%{ background-position:100% 50%; } }

/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2){ transition-delay:0.1s; }
.fade-up:nth-child(3){ transition-delay:0.2s; }
.fade-up:nth-child(4){ transition-delay:0.3s; }

/* RESPONSIVE */
@media (max-width:960px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-subtitle { max-width: 100%; margin: 0 auto 2.5rem; }
    .hero-actions { justify-content: center; }
    .hero-visual { order: -1; }
    .historia-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .service-full-card { grid-template-columns: 1fr; direction: ltr !important; }
    .service-visual { min-height: 140px; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .hero-badge { display: none; }
}
@media (max-width:600px) {
    .nav-links { display: none; flex-direction: column; position: fixed; top: 0; right: 0; bottom: 0; width: 280px; background: var(--white); padding: 5rem 2rem 2rem; box-shadow: -4px 0 40px rgba(232,0,107,0.12); border-left: 1px solid var(--pink-border); gap: 0.5rem; }
    .nav-links.open { display: flex; }
    .nav-toggle { display: flex; }
    .footer-inner { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .contact-form { padding: 2rem 1.5rem; }
    .form-grid { grid-template-columns: 1fr; }
    .hero-logo-showcase { width: 260px; height: 260px; }
    .hero-logo-img { width: 190px; height: 190px; }
}
