/* =========================================
   CONFIGURACIÓN GENERAL
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #e5007d;
    --primary-dark: #b80063;
    --dark: #171717;
    --text: #4b4b4b;
    --light: #f7f7f9;
    --white: #ffffff;
    --border: #e7e7e7;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1120px, 92%);
    margin: auto;
}


/* =========================================
   AVISO SUPERIOR
========================================= */

.top-notice {
    background: #191919;
    color: #ffffff;
    text-align: center;
    padding: 9px 15px;
    font-size: 13px;
}


/* =========================================
   HEADER
========================================= */

.header {
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    font-size: 21px;
    font-weight: 800;
    color: var(--dark);
}

.logo span {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    border-radius: 9px;
    margin-right: 7px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 27px;
}

.nav a {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    transition: 0.2s;
}

.nav a:hover {
    color: var(--primary);
}


/* =========================================
   HERO
========================================= */

.hero {
    background:
        radial-gradient(circle at 85% 30%, #ffd5ed 0, transparent 28%),
        linear-gradient(135deg, #fff 0%, #fff5fa 100%);
    padding: 85px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    align-items: center;
    gap: 70px;
}

.badge {
    display: inline-block;
    background: #ffe4f2;
    color: var(--primary-dark);
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero h1 {
    color: var(--dark);
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.05;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.hero h1 strong {
    color: var(--primary);
}

.hero-text > p {
    max-width: 650px;
    font-size: 18px;
    color: #5f5f5f;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
}


/* =========================================
   BOTONES
========================================= */

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 13px 23px;
    border-radius: 9px;
    font-weight: 700;
    font-size: 14px;
    transition: 0.2s;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: var(--dark);
    border: 1px solid #ddd;
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-light {
    background: white;
    color: var(--primary);
}

.btn-light:hover {
    transform: translateY(-2px);
}


/* =========================================
   TARJETA HERO
========================================= */

.hero-card {
    background: white;
    border: 1px solid #eeeeee;
    border-radius: 22px;
    padding: 35px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.hero-icon {
    width: 64px;
    height: 64px;
    background: #ffe5f2;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    margin-bottom: 22px;
}

.hero-card h2 {
    color: var(--dark);
    margin-bottom: 12px;
}

.hero-card p {
    font-size: 15px;
    margin-bottom: 25px;
}

.advisor {
    border-top: 1px solid var(--border);
    padding-top: 18px;
    display: flex;
    flex-direction: column;
}

.advisor strong {
    color: var(--dark);
}

.advisor span {
    font-size: 13px;
    color: #777;
}


/* =========================================
   SECCIONES
========================================= */

.section {
    padding: 90px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-label {
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2,
.about-section h2 {
    color: var(--dark);
    font-size: 36px;
    line-height: 1.15;
    margin: 12px 0 15px;
}

.section-header p {
    color: #6b6b6b;
}


/* =========================================
   CARDS
========================================= */

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.card {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 17px;
    background: white;
    transition: 0.25s;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: #f1b4d2;
}

.card-icon {
    font-size: 28px;
    margin-bottom: 18px;
}

.card h3 {
    color: var(--dark);
    margin-bottom: 10px;
}

.card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.card a {
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
}


/* =========================================
   SOBRE EL SITIO
========================================= */

.about-section {
    background: var(--light);
    padding: 90px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 70px;
    align-items: center;
}

.about-section h2 {
    margin-bottom: 22px;
}

.about-section p {
    margin-bottom: 15px;
}

.text-link {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    margin-top: 10px;
}

.info-box {
    background: white;
    padding: 35px;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.info-box-icon {
    font-size: 35px;
    margin-bottom: 12px;
}

.info-box h3 {
    color: var(--dark);
    margin-bottom: 15px;
}

.info-box p {
    font-size: 14px;
}


/* =========================================
   CTA
========================================= */

.cta {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 70px 20px;
}

.cta h2 {
    font-size: 38px;
    margin-bottom: 10px;
}

.cta p {
    margin-bottom: 25px;
    opacity: 0.95;
}


/* =========================================
   FOOTER
========================================= */

.footer {
    background: #151515;
    color: #ccc;
}

.footer-grid {
    padding: 60px 0;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
}

.footer-logo {
    color: white;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
}

.footer h4 {
    color: white;
    margin-bottom: 15px;
}

.footer a {
    display: block;
    color: #aaa;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer a:hover {
    color: var(--primary);
}

.footer p {
    font-size: 14px;
    color: #999;
}

.footer-bottom {
    border-top: 1px solid #292929;
    padding: 20px 0;
    text-align: center;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .nav-container {
        flex-direction: column;
        padding: 18px 0;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero-content,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 60px 0;
    }

    .cards {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 600px) {

    .hero h1 {
        font-size: 40px;
    }

    .section-header h2,
    .about-section h2 {
        font-size: 30px;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-card {
        padding: 25px;
    }

}


/* =========================================
   PÁGINAS INTERNAS
========================================= */

.page-hero {
    background:
        radial-gradient(circle at 85% 30%, #ffd5ed 0, transparent 28%),
        linear-gradient(135deg, #fff 0%, #fff5fa 100%);
    padding: 75px 0;
}

.page-hero h1 {
    color: var(--dark);
    font-size: clamp(38px, 5vw, 56px);
    line-height: 1.08;
    margin: 12px 0 20px;
    max-width: 800px;
}

.page-hero h1 strong {
    color: var(--primary);
}

.page-hero p {
    max-width: 700px;
    font-size: 18px;
    color: #626262;
}


/* =========================================
   LISTA DE SERVICIOS
========================================= */

.service-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-card {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 25px;
    padding: 35px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    transition: 0.25s;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.07);
    border-color: #f0b5d2;
}

.service-number {
    font-size: 30px;
    font-weight: 800;
    color: #e5b1ca;
}

.service-content {
    max-width: 850px;
}

.service-icon {
    width: 55px;
    height: 55px;
    background: #ffe7f3;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    margin-bottom: 17px;
}

.service-content h2 {
    color: var(--dark);
    font-size: 27px;
    margin-bottom: 12px;
}

.service-content > p {
    margin-bottom: 15px;
}

.service-content ul {
    margin: 15px 0 20px;
    padding-left: 20px;
}

.service-content li {
    margin-bottom: 7px;
}

.service-note {
    background: #f8f8fa;
    border-left: 3px solid var(--primary);
    padding: 13px 15px;
    font-size: 13px;
    color: #666;
}


/* =========================================
   RESPONSIVE SERVICIOS
========================================= */

@media (max-width: 650px) {

    .service-card {
        grid-template-columns: 1fr;
        padding: 25px;
    }

    .service-number {
        font-size: 24px;
    }

}


/* =========================================
   AVISO LEGAL
========================================= */

.legal-section {
    padding: 80px 0;
    background: #f8f8fa;
}

.legal-container {
    max-width: 900px;
}

.legal-card {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 17px;
    padding: 35px;
    margin-bottom: 20px;
    position: relative;
}

.legal-card:hover {
    border-color: #edb5d2;
}

.legal-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 30px;
    border-radius: 20px;
    background: #ffe6f2;
    color: #c00068;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 15px;
}

.legal-card h2 {
    color: #171717;
    font-size: 24px;
    margin-bottom: 15px;
}

.legal-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-card p:last-child {
    margin-bottom: 0;
}

.legal-card strong {
    color: #222;
}


/* =========================================
   RESPONSABLE
========================================= */

.responsible-box {
    display: flex;
    align-items: center;
    gap: 25px;
    background: #171717;
    color: white;
    border-radius: 20px;
    padding: 35px;
    margin-top: 35px;
}

.responsible-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 18px;
    background: #e5007d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.responsible-box span {
    color: #ff9acb;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.responsible-box h2 {
    margin: 5px 0;
    font-size: 24px;
}

.responsible-box p {
    color: #bcbcbc;
    margin: 2px 0;
}

.responsible-box .responsible-note {
    margin-top: 12px;
    color: #ffffff;
    font-size: 14px;
}


/* =========================================
   FECHA
========================================= */

.legal-date {
    text-align: center;
    color: #777;
    font-size: 13px;
    margin-top: 30px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 600px) {

    .legal-section {
        padding: 50px 0;
    }

    .legal-card {
        padding: 25px;
    }

    .legal-card h2 {
        font-size: 21px;
    }

    .responsible-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 25px;
    }

}
