*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #fdf4f7;
    --bg-soft: #f9e8f0;
    --primary: #c65a86;
    --primary-deep: #9d3f67;
    --accent: #f4a9c2;
    --text: #3b2a33;
    --muted: #7d6673;
    --card: #ffffff;
    --radius-lg: 24px;
    --shadow-soft: 0 18px 35px rgba(0,0,0,0.08);
}

body {
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

/* Layout */

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

.section-soft {
    background: var(--bg-soft);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: 16px;
}

.center {
    text-align: center;
}

.grid-2 {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
}

@media (max-width: 900px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

/* Topbar */

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(253, 244, 247, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.6);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    gap: 16px;
}

.brand-mini {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
}

.brand-mini-logo {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    object-fit: cover;
    box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}

.brand-mini-text {
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.03em;
}

.nav {
    display: flex;
    gap: 18px;
    font-size: 0.95rem;
}

.nav a {
    text-decoration: none;
    color: var(--muted);
    font-weight: 500;
    position: relative;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.25s ease;
}

.nav a:hover::after {
    width: 100%;
}

.btn-topbar {
    padding: 8px 14px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, var(--primary), var(--primary-deep));
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.16);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
}

@media (max-width: 860px) {
    .nav {
        position: fixed;
        inset: 60px 0 auto 0;
        background: rgba(253, 244, 247, 0.97);
        flex-direction: column;
        align-items: center;
        padding: 16px 0 20px;
        transform: translateY(-140%);
        transition: transform 0.25s ease;
        box-shadow: 0 8px 18px rgba(0,0,0,0.08);
    }

    .nav.is-open {
        transform: translateY(0);
    }

    .btn-topbar {
        display: none;
    }

    .nav-toggle {
        display: block;
    }
}

/* Hero */

.hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 215, 235, 0.85) 0, rgba(40, 20, 30, 0.75) 60%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 80px 0 84px;
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 560px;
    color: #fff7fb;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 4vw, 3.1rem);
    margin-bottom: 18px;
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 24px;
    color: #ffecff;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
    font-size: 0.86rem;
}

.hero-badges span {
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.55);
    padding: 6px 12px;
    backdrop-filter: blur(4px);
}

.hero-badges i {
    margin-right: 6px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 10px;
}

.hero .eyebrow {
    color: #ffe0f3;
    opacity: 0.9;
}

/* Buttons */

.btn-primary,
.btn-ghost,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    border: none;
    padding: 11px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-deep));
    color: #fff;
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 40px rgba(0,0,0,0.18);
}

.btn-ghost {
    background: transparent;
    color: #ffe5ff;
    border: 1px solid rgba(255,255,255,0.7);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.12);
}

.btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary-deep);
    background: #fff;
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.btn-primary.full {
    width: 100%;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Section text */

.section-text p {
    margin-bottom: 12px;
}

.section-text p:last-child {
    margin-bottom: 0;
}

.feature-list {
    list-style: none;
    margin-top: 12px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.95rem;
    margin-bottom: 6px;
    color: var(--muted);
}

.feature-list i {
    margin-top: 3px;
    color: var(--primary);
}

/* Social links */

.social-links {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-links a {
    font-size: 0.9rem;
    text-decoration: none;
    color: var(--primary-deep);
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.8);
    border: 1px solid rgba(0,0,0,0.04);
}

/* Photo stack */

.card-photo-stack {
    position: relative;
    max-width: 420px;
    margin: 0 auto;
}

.card-main,
.card-secondary {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    object-fit: cover;
    width: 100%;
}

.card-main {
    display: block;
}

.card-secondary {
    position: absolute;
    width: 68%;
    right: -10%;
    bottom: -12%;
    border: 4px solid #fdf4f7;
}

@media (max-width: 900px) {
    .card-secondary {
        display: none;
    }
}

/* Servicios */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 32px;
}

.service-card {
    background: var(--card);
    border-radius: 20px;
    padding: 22px 22px 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255,255,255,0.8);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--primary-deep);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 10px;
}

.service-card ul {
    list-style: none;
    font-size: 0.9rem;
    color: var(--text);
}

.service-card li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 4px;
}

.service-card li::before {
    content: "•";
    position: absolute;
    left: 4px;
    color: var(--primary);
}

@media (max-width: 960px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Galería */

.gallery-intro {
    max-width: 620px;
    margin: 0 auto 26px;
    color: var(--muted);
    font-size: 0.96rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.gallery-item {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 18px;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
    box-shadow: 0 10px 22px rgba(0,0,0,0.1);
}

.gallery-item:hover {
    transform: translateY(-4px);
    filter: brightness(1.04);
    box-shadow: 0 18px 35px rgba(0,0,0,0.18);
}

@media (max-width: 960px) {
    .gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Lightbox */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(15, 10, 20, 0.88);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 60;
    padding: 20px;
}

.lightbox.is-open {
    display: flex;
}

.lightbox img {
    max-width: 960px;
    width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.55);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fff;
    border-radius: 999px;
    border: none;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    cursor: pointer;
}

/* Video */

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* Redes */

.social-embed-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 28px;
}

.social-card {
    background: var(--card);
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--shadow-soft);
}

.social-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--primary-deep);
}

.social-card p {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 12px;
}

@media (max-width: 780px) {
    .social-embed-grid {
        grid-template-columns: 1fr;
    }
}

/* Contacto */

.contact-list {
    list-style: none;
    margin-top: 10px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    font-size: 0.96rem;
}

.contact-list i {
    color: var(--primary);
}

.contact-list a {
    color: var(--primary-deep);
    text-decoration: none;
}

.contact-form {
    background: var(--card);
    border-radius: 22px;
    padding: 22px 22px 18px;
    box-shadow: var(--shadow-soft);
}

.form-row {
    margin-bottom: 12px;
}

.form-row label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--muted);
    display: block;
    margin-bottom: 3px;
}

.form-row input,
.form-row textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.08);
    padding: 9px 11px;
    font-size: 0.94rem;
    font-family: inherit;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 1px rgba(198,90,134,0.2);
}

.form-note {
    margin-top: 8px;
    font-size: 0.8rem;
    color: var(--muted);
}

/* WhatsApp float */

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: #25d366;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 18px 35px rgba(0,0,0,0.25);
    text-decoration: none;
    z-index: 55;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
}

/* Footer */

.footer {
    padding: 26px 0 30px;
    background: #301722;
    color: #fbe7f4;
    margin-top: 30px;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 0.85rem;
}

.footer a {
    color: #ffd2f0;
    text-decoration: none;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
}

@media (max-width: 640px) {
    .hero-content {
        padding-top: 90px;
    }

    .hero-text {
        text-align: left;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}
