/* =========================================================
   REINOVA
   Estilos principales
========================================================= */

:root {
    --primary: #E32291;
    --primary-dark: #5d4d3d;
    --text: #303030;
    --text-light: #6f6f6f;
    --background: #ffffff;
    --background-light: #f7f7f7;
    --border: #e7e7e7;
    --max-width: 1180px;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--background);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(92%, var(--max-width));
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--border);
}

.header-container {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 150px;
    height: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav a {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    color: #454545;
    transition: color 0.25s ease;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.25s ease;
}

.nav a:hover {
    color: var(--primary);
}

.nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    border: none;
    background: transparent;
    color: var(--primary);
    font-size: 24px;
    cursor: pointer;
}


/* =========================================================
   ELEMENTOS GENERALES
========================================================= */

.eyebrow {
    display: inline-block;
    margin-bottom: 15px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    line-height: 1.2;
}

h2 {
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 600;
    letter-spacing: -1px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 21px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.btn-primary {
    color: white;
    background: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid #d5d5d5;
    color: #444;
    background: white;
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 650px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border);
    background:
        linear-gradient(
            90deg,
            #ffffff 0%,
            #ffffff 55%,
            #fafafa 100%
        );
}

.hero-content {
    max-width: 900px;
    padding: 90px 0;
}

.hero h1 {
    max-width: 850px;
    margin-bottom: 25px;
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 500;
    letter-spacing: -2.5px;
}

.hero h1 span {
    color: var(--primary);
}

.hero-text {
    max-width: 700px;
    margin-bottom: 35px;
    color: var(--text-light);
    font-size: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}


/* =========================================================
   AUDIENCES
========================================================= */

.audiences {
    padding: 100px 0;
}

.section-intro {
    max-width: 760px;
    margin-bottom: 55px;
}

.section-intro h2 {
    margin-bottom: 20px;
}

.section-intro p {
    color: var(--text-light);
    font-size: 17px;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.audience-card {
    display: grid;
    grid-template-columns: 65px 1fr;
    gap: 25px;
    padding: 40px;
    border: 1px solid var(--border);
    background: white;
    transition: all 0.3s ease;
}

.audience-card:hover {
    border-color: #cfc4b7;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.card-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f4f1ed;
    color: var(--primary);
    font-size: 22px;
}

.card-label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.audience-card h3 {
    margin-bottom: 13px;
    font-size: 25px;
    font-weight: 600;
}

.audience-card p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 15px;
}

.card-link {
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
}

.card-link i {
    margin-left: 5px;
    transition: transform 0.2s ease;
}

.audience-card:hover .card-link i {
    transform: translateX(4px);
}


/* =========================================================
   SECCIONES
========================================================= */

.section {
    padding: 105px 0;
}

.section-light {
    background: var(--background-light);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 55px;
}

.section-heading h2 {
    margin-bottom: 20px;
}

.section-heading p {
    color: var(--text-light);
    font-size: 17px;
}


/* =========================================================
   SERVICIOS
========================================================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.service-card {
    min-height: 270px;
    padding: 35px;
    background: white;
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border-radius: 50%;
    background: #f4f1ed;
    color: var(--primary);
    font-size: 18px;
}

.service-card h3 {
    margin-bottom: 13px;
    font-size: 21px;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    font-size: 14px;
}


/* =========================================================
   INTERNACIONAL
========================================================= */

.international-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.international-content h2 {
    margin-bottom: 25px;
}

.international-content p {
    margin-bottom: 18px;
    color: var(--text-light);
}

.international-content .btn {
    margin-top: 15px;
}

.international-features {
    display: grid;
    gap: 30px;
}

.feature {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
}

.feature > i {
    color: var(--primary);
    font-size: 21px;
    padding-top: 3px;
}

.feature h3 {
    margin-bottom: 5px;
    font-size: 18px;
}

.feature p {
    color: var(--text-light);
    font-size: 14px;
}


/* =========================================================
   DIFERENCIALES
========================================================= */

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.value {
    padding-top: 25px;
    border-top: 1px solid var(--border);
}

.value > i {
    margin-bottom: 22px;
    color: var(--primary);
    font-size: 23px;
}

.value h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

.value p {
    color: var(--text-light);
    font-size: 14px;
}


/* =========================================================
   CONTACTO
========================================================= */

.contact-section {
    padding: 100px 0;
    color: white;
    background: #3d3833;
}

.contact-content {
    max-width: 700px;
    margin-bottom: 55px;
}

.contact-content .eyebrow {
    color: #c7b9a9;
}

.contact-content h2 {
    margin-bottom: 20px;
}

.contact-content p {
    color: #d0ccc8;
    font-size: 16px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.contact-person {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 17px;
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #c7b9a9;
}

.contact-person h3 {
    margin-bottom: 3px;
    font-size: 16px;
}

.contact-person span {
    display: block;
    margin-bottom: 12px;
    color: #bcb7b2;
    font-size: 13px;
}

.contact-person a {
    display: block;
    margin-top: 4px;
    color: #dedad6;
    font-size: 13px;
}

.contact-person a:hover {
    color: white;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: #292622;
    color: #aaa49e;
}

.footer-content {
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-logo {
    width: 120px;
    margin-bottom: 10px;
}

.footer-content p {
    font-size: 12px;
}

.footer-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
}

.separator {
    color: #75634f;
}

.footer-bottom {
    padding: 17px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    color: #77716c;
    font-size: 11px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .nav {
        position: absolute;
        top: 82px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 15px 4%;
        border-bottom: 1px solid var(--border);
        background: white;
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        padding: 14px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav a::after {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .audience-grid,
    .international-layout {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .international-layout {
        gap: 55px;
    }

}


@media (max-width: 600px) {

    .header-container {
        height: 70px;
    }

    .nav {
        top: 70px;
    }

    .logo {
        width: 125px;
    }

    .hero {
        min-height: 570px;
    }

    .hero-content {
        padding: 70px 0;
    }

    .hero h1 {
        font-size: 42px;
        letter-spacing: -1.5px;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .audiences,
    .section,
    .contact-section {
        padding: 75px 0;
    }

    .audience-card {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        padding: 35px 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-info {
        flex-wrap: wrap;
    }

}
/* =========================================================
   FORMULARIO DE CONTACTO
========================================================= */

.contact-form-wrapper {
    max-width: 900px;
    margin-bottom: 70px;
    padding: 35px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    color: #ddd8d3;
    font-size: 13px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 3px;
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.2s ease,
                background 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa49e;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #c7b9a9;
    background: rgba(255, 255, 255, 0.11);
}

.form-group textarea {
    resize: vertical;
    min-height: 125px;
}

.form-submit {
    border: none;
    cursor: pointer;
}


/* =========================================================
   FORMULARIO - RESPONSIVE
========================================================= */

@media (max-width: 600px) {

    .contact-form-wrapper {
        padding: 25px 20px;
        margin-bottom: 55px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

}