/* Estilos especificos para el modelo Belleza */
:root {
    --primary: #880E4F;
    --secondary: #F06292;
    --accent: #F1E9DA;
    --neutral: #FFD400;
    --bg: #fdf4ff;
    --card: #ffffff;
    --text: #1c1c28;
    --muted: #6b6b83;
}

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

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

img {
    max-width: 100%;
    display: block;
}

section {
    padding: clamp(3rem, 6vw, 4.5rem) 0;
}

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

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.2rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
}

.logo {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.logo-icon {
    font-size: 1.8rem;
}

.brand-name {
    font-size: 1.1rem;
}

.nav-links {
    display: flex;
    gap: 1.2rem;
}

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

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

/* Hero */
.hero-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
}

.hero-overlay {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    min-height: 380px;
}

.hero-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 55%);
}

.hero-content {
    position: relative;
    padding: clamp(2rem, 6vw, 4rem);
    color: #fff;
    max-width: 540px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-content h2 {
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    line-height: 1.1;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.8rem;
    border-radius: 999px;
    background: #fff;
    color: var(--primary);
    font-weight: 600;
    width: fit-content;
    text-decoration: none;
}

.hero-image {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 42%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px 0 0 32px;
}

/* About */
.about-section {
    background: var(--card);
}

.about-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    align-items: center;
}

.about-image-side img {
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.about-text-side h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.location-info {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--secondary);
    font-weight: 600;
    margin-top: 1.5rem;
}

/* Services */
.services-section {
    background: #fff;
}

.section-title {
    font-size: 2.2rem;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--muted);
    margin-bottom: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.4rem;
}

.service-card {
    background: var(--card);
    border-radius: 26px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.service-info {
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.service-price {
    font-weight: 700;
    color: var(--primary);
}

.empty-state {
    text-align: center;
    padding: 2rem;
    border: 2px dashed rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    color: var(--muted);
}

/* Gallery */
.gallery-section {
    border-radius: 32px;
    background: linear-gradient(120deg, var(--primary), var(--secondary));
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    display: grid;
    place-items: center;
    transition: opacity 0.2s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.view-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    display: grid;
    place-items: center;
}

.gallery-placeholders {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.gallery-placeholders .gallery-item {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.2);
}

/* Contact */
.contact-section {
    background: #fff;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.contact-info-box,
.social-box {
    padding: 1.8rem;
    border-radius: 24px;
    background: var(--card);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.contact-info-box p,
.contact-info-box a {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: inherit;
    margin-bottom: 0.8rem;
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.1rem;
}

.social-icon.fb { background: #1877f2; }
.social-icon.ig { background: linear-gradient(120deg, #f77737, #c13584, #962fbf); }
.social-icon.tt { background: #000; }

.map-card {
    margin-top: 2.5rem;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(17, 7, 31, 0.08);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.15);
}

.map-card iframe {
    width: 100%;
    border: none;
    height: clamp(260px, 38vw, 360px);
    display: block;
}

.map-card .map-footer {
    background: #fff;
    padding: 1rem 1.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.map-card .map-footer a {
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
}

/* Footer */
.footer {
    background: #11071f;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    padding: 2.5rem 1rem;
}

.footer-supporters {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-supporters__label {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-supporters__logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.footer-supporters__item {
    width: clamp(110px, 24vw, 150px);
    height: 68px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.75rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.footer-supporters__item img {
    max-width: 100%;
    max-height: 46px;
    object-fit: contain;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.3));
    transition: transform 0.25s ease;
}

.footer-supporters__item span {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    letter-spacing: 0.08em;
}

.footer-supporters__item:hover img {
    transform: scale(1.03);
}

.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 24px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #25d366;
    display: grid;
    place-items: center;
    box-shadow: 0 18px 35px rgba(37, 211, 102, 0.35);
}

@media (max-width: 960px) {
    .nav-links {
        display: none;
    }

    .hero-image {
        position: static;
        max-width: 100%;
        border-radius: 0;
        margin-top: 1.5rem;
    }

    .hero-overlay {
        padding-bottom: 1rem;
    }
}