/* =========================
   ESTILOS GENERALES
========================= */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #1d5f8f;
}

/* =========================
   AJUSTES GENERALES MÓVIL
========================= */

html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    width: 100%;
}

img {
    max-width: 100%;
}


/* =========================
   BARRA DE NAVEGACIÓN
========================= */

.navbar {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}


/* LOGO */

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    display: block;
}

.logo span {
    display: block;
}


/* MENÚ */

nav {
    display: flex;
    gap: 35px;
}

nav a {
    text-decoration: none;
    color: #333333;
    font-size: 16px;
    font-weight: 500;
}

nav a:hover {
    color: #1d5f8f;
}


/* BOTÓN PRESUPUESTO */

.btn-presupuesto {
    text-decoration: none;
    background-color: #1d5f8f;
    color: #ffffff;
    padding: 14px 22px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
}

.btn-presupuesto:hover {
    background-color: #16496e;
}
/* =========================
   HERO
========================= */

.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    padding: 0 8%;
    position: relative;
    overflow: hidden;

    background-image: url("../images/hero-tonichico-cocina.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #ffffff;
}

.hero-content {
    max-width: 700px;
    width: 50%;
    color: #0d3f63;
    position: relative;
    z-index: 2;
}

.hero-small {
    color: #1d5f8f;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.hero h1 {
    color: #0d3f63;
    font-size: 64px;
    line-height: 1.05;
    margin: 0 0 25px;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-text {
    color: #3f4f5c;
    max-width: 600px;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 16px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-primary {
    background-color: #1d5f8f;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #16496e;
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid #1d5f8f;
    color: #1d5f8f;
    background-color: rgba(255, 255, 255, 0.78);
}

.btn-secondary:hover {
    background-color: #1d5f8f;
    color: #ffffff;
}
/* =========================
   SERVICIOS
========================= */

.services {
    padding: 100px 8%;
    background-color: #ffffff;
}

.section-header {
    max-width: 800px;
    margin-bottom: 60px;
}

.section-small {
    color: #1d5f8f;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-header h2 {
    color: #222222;
    font-size: 46px;
    line-height: 1.1;
    margin: 0 0 25px;
}

.section-description {
    color: #666666;
    font-size: 18px;
    line-height: 1.6;
    max-width: 650px;
}


/* GRID DE SERVICIOS */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


/* TARJETAS */

.service-card {
    padding: 35px;
    min-height: 190px;
    border: 1px solid #e5e5e5;
    transition: 0.3s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #1d5f8f;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-card span {
    color: #1d5f8f;
    font-size: 14px;
    font-weight: 700;
}

.service-card h3 {
    color: #222222;
    font-size: 23px;
    margin: 25px 0 15px;
}

.service-card p {
    color: #777777;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}
/* =========================
   PROYECTOS
========================= */

.projects {
    padding: 110px 8%;
    background-color: #f5f7f9;
}

.projects-header {
    max-width: 750px;
}


/* GRID */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


/* TARJETA */

.project-card {
    background-color: #ffffff;
    overflow: hidden;
    transition: 0.3s;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}


/* IMAGEN */

.project-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.5s;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}


/* INFORMACIÓN */

.project-info {
    padding: 25px;
}

.project-info span {
    color: #1d5f8f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.project-info h3 {
    color: #222222;
    font-size: 21px;
    line-height: 1.3;
    margin: 15px 0;
}

.project-info a {
    color: #1d5f8f;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}


/* BOTÓN */

.projects-button {
    text-align: center;
    margin-top: 55px;
}

.btn-primary-blue {
    display: inline-block;
    background-color: #1d5f8f;
    color: #ffffff;
    padding: 16px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-primary-blue:hover {
    background-color: #16496e;
    transform: translateY(-2px);
}
/* =========================
   ANTES Y DESPUÉS
========================= */

.before-after {
    padding: 110px 8%;
    background-color: #ffffff;
}

.before-after-header {
    text-align: center;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}


/* COMPARACIÓN */

.comparison {
    max-width: 1100px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: 1fr 70px 1fr;
    align-items: center;
    gap: 20px;
}


/* IMÁGENES */

.comparison-image {
    height: 430px;
    position: relative;
    overflow: hidden;
}

.comparison-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* ETIQUETAS */

.comparison-image span {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #1d5f8f;
    color: #ffffff;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}


/* FLECHA */

.comparison-arrow {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #1d5f8f;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    font-weight: 700;
    margin: auto;
}


/* DESCRIPCIÓN */

.comparison-description {
    text-align: center;
    margin-top: 30px;
}

.comparison-description p {
    color: #666666;
    font-size: 15px;
}
/* =========================
   SOBRE TONICHICO
========================= */

.about {
    padding: 110px 8%;
    background-color: #f5f7f9;
}

.about-content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}


/* TEXTO */

.about-text h2 {
    color: #222222;
    font-size: 48px;
    line-height: 1.05;
    margin: 0 0 30px;
}

.about-text p:not(.section-small) {
    color: #666666;
    font-size: 17px;
    line-height: 1.7;
    max-width: 550px;
    margin-bottom: 20px;
}


/* EQUIPO */

.team {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.team-card {
    background-color: #ffffff;
    overflow: hidden;
    transition: 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}


/* IMAGEN */

.team-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* INFORMACIÓN */

.team-info {
    padding: 22px;
}

.team-info span {
    color: #1d5f8f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.team-info h3 {
    color: #222222;
    font-size: 26px;
    margin: 10px 0 5px;
}

.team-info p {
    color: #777777;
    font-size: 14px;
    margin: 0;
}
/* =========================
   POR QUÉ ELEGIRNOS
========================= */

.why-us {
    padding: 110px 8%;
    background-color: #ffffff;
}

.why-header {
    max-width: 800px;
}

.why-header h2 {
    color: #222222;
    font-size: 46px;
    line-height: 1.1;
    margin: 0 0 25px;
}


/* GRID */

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}


/* TARJETAS */

.why-card {
    padding: 35px 30px;
    border-top: 3px solid #1d5f8f;
    background-color: #f5f7f9;
    transition: 0.3s;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.why-card span {
    color: #1d5f8f;
    font-size: 14px;
    font-weight: 700;
}

.why-card h3 {
    color: #222222;
    font-size: 23px;
    margin: 25px 0 15px;
}

.why-card p {
    color: #777777;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}
/* =========================
   CONTACTO
========================= */

.contact {
    padding: 120px 8%;
    background-color: #1d5f8f;
    color: #ffffff;
    text-align: center;
}

.contact-content {
    max-width: 850px;
    margin: 0 auto;
}

.contact-small {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.contact h2 {
    font-size: 58px;
    line-height: 1.05;
    margin: 0 0 25px;
}

.contact-text {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 18px;
    line-height: 1.6;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-button {
    display: inline-block;
    padding: 17px 28px;
    background-color: #ffffff;
    color: #1d5f8f;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: 0.3s;
}

.contact-button:hover {
    transform: translateY(-3px);
}
/* =========================
   FOOTER
========================= */

.footer {
    background-color: #0d3f63;
    color: #ffffff;
    padding: 75px 8% 25px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 70px;
    padding-bottom: 60px;
}


/* MARCA */

.footer-logo {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 1px;
}

.footer-brand > p:first-of-type {
    color: #ffffff;
    font-size: 15px;
    margin: 8px 0 20px;
}

.footer-description {
    color: #b9cbd8;
    max-width: 400px;
    line-height: 1.6;
    font-size: 14px;
}


/* ENLACES Y CONTACTO */

.footer h3 {
    font-size: 17px;
    margin: 0 0 25px;
}

.footer-links,
.footer-contact,
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-links a,
.footer-contact a,
.footer-social a {
    color: #b9cbd8;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-social a:hover {
    color: #ffffff;
}


/* PARTE INFERIOR */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    color: #9eb4c4;
    font-size: 12px;
    margin: 0;
}
/* =========================
   RESPONSIVE
   TABLET Y MÓVIL
========================= */


/* TABLET */

@media (max-width: 1000px) {

    /* NAVBAR */

    .navbar {
        padding: 0 30px;
    }

    nav {
        gap: 20px;
    }


    /* HERO */

    .hero-content {
        width: 52%;
    }

    .hero h1 {
        font-size: 50px;
    }


    /* SERVICIOS */

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    /* PROYECTOS */

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    /* SOBRE TONICHICO */

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }


    /* POR QUÉ ELEGIRNOS */

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    /* FOOTER */

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

}


/* MÓVIL */

@media (max-width: 700px) {

    /* GENERAL */

    .services,
    .projects,
    .before-after,
    .about,
    .why-us {
        padding: 75px 6%;
    }


    /* NAVBAR */

    .navbar {
        height: auto;
        min-height: 70px;
        padding: 18px 6%;
        flex-wrap: wrap;
        gap: 20px;
    }

    .logo {
        font-size: 25px;
    }

    nav {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px 20px;
    }

    nav a {
        font-size: 14px;
    }

    .btn-presupuesto {
        padding: 11px 15px;
        font-size: 13px;
    }


    /* HERO */

    .hero {
        min-height: calc(100vh - 150px);
        padding: 65px 6% 80px;
        align-items: flex-start;
        background-size: auto 100%;
        background-position: 78% center;
    }

    .hero-content {
        width: 88%;
        max-width: 620px;
        padding: 22px 20px 26px;
        box-sizing: border-box;
        background: rgba(255, 255, 255, 0.88);
        border-radius: 6px;
    }

    .hero h1 {
        font-size: 42px;
        line-height: 1.05;
    }

    .hero-small {
        font-size: 12px;
    }

    .hero-text {
        font-size: 17px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }


    /* TÍTULOS */

    .section-header h2,
    .about-text h2,
    .why-header h2 {
        font-size: 36px;
    }


    /* SERVICIOS */

    .services-grid {
        grid-template-columns: 1fr;
    }


    /* PROYECTOS */

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-image {
        height: 260px;
    }


    /* ANTES Y DESPUÉS */

    .comparison {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .comparison-image {
        height: 300px;
    }

    .comparison-arrow {
        transform: rotate(90deg);
    }


    /* EQUIPO */

    .team {
        grid-template-columns: 1fr;
    }

    .team-image {
        height: 320px;
    }


    /* POR QUÉ ELEGIRNOS */

    .why-grid {
        grid-template-columns: 1fr;
    }


    /* CONTACTO */

    .contact {
        padding: 80px 6%;
    }

    .contact h2 {
        font-size: 42px;
    }

    .contact-text {
        font-size: 16px;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .contact-button {
        width: 100%;
        box-sizing: border-box;
    }


    /* FOOTER */

    .footer {
        padding: 60px 6% 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

}
/* =========================
   PÁGINA INDIVIDUAL
   PROYECTO
========================= */

.project-detail-hero {
    min-height: 55vh;
    display: flex;
    align-items: center;
    padding: 80px 8%;
    background-color: #1d5f8f;
    color: #ffffff;
}

.project-detail-content {
    max-width: 850px;
}

.project-detail-content .section-small {
    color: #ffffff;
}

.project-detail-content h1 {
    font-size: 68px;
    line-height: 1.05;
    margin: 20px 0 25px;
}

.project-detail-content p:not(.section-small) {
    max-width: 600px;
    font-size: 19px;
    line-height: 1.6;
}


/* INTRO */

.project-intro {
    padding: 100px 8%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.project-intro h2 {
    font-size: 48px;
    line-height: 1.1;
    color: #222222;
    margin: 0;
}

.project-intro p {
    color: #666666;
    font-size: 17px;
    line-height: 1.7;
    margin-top: 0;
    margin-bottom: 25px;
}


/* FASES */

.project-phase {
    padding: 100px 8%;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;
    align-items: center;
    background-color: #f5f7f9;
}

.project-phase.reverse {
    grid-template-columns: 1.2fr 0.8fr;
}

.project-phase.reverse .phase-text {
    order: 2;
}

.project-phase.reverse .phase-image {
    order: 1;
}

.phase-text span {
    color: #1d5f8f;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.phase-text h2 {
    color: #222222;
    font-size: 42px;
    line-height: 1.1;
    margin: 20px 0;
}

.phase-text p {
    color: #666666;
    font-size: 17px;
    line-height: 1.7;
    max-width: 450px;
}

.phase-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.phase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* CTA */

.project-cta {
    padding: 110px 8%;
    text-align: center;
    background-color: #ffffff;
}

.project-cta p {
    color: #1d5f8f;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.project-cta h2 {
    color: #222222;
    font-size: 50px;
    margin: 20px 0 35px;
}
@media (max-width: 700px) {

    .project-detail-hero {
        min-height: 55vh;
        padding: 70px 6%;
    }

    .project-detail-content h1 {
        font-size: 45px;
    }

    .project-detail-content p:not(.section-small) {
        font-size: 17px;
    }

    .project-intro {
        padding: 75px 6%;
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .project-intro h2 {
        font-size: 36px;
    }

    .project-phase,
    .project-phase.reverse {
        padding: 75px 6%;
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .project-phase.reverse .phase-text,
    .project-phase.reverse .phase-image {
        order: initial;
    }

    .phase-text h2 {
        font-size: 36px;
    }

    .phase-image {
        height: 350px;
    }

    .project-cta {
        padding: 80px 6%;
    }

    .project-cta h2 {
        font-size: 38px;
    }

}
html {
    scroll-behavior: smooth;
}
/* =========================
   MENÚ MÓVIL
========================= */

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #222222;
    line-height: 1;
}


/* MÓVIL */

@media (max-width: 700px) {

    .navbar {
        position: relative;
        justify-content: space-between;
    }

    .menu-toggle {
        display: block;
    }

    #main-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding-top: 25px;
    }

    #main-nav.menu-open {
        display: flex;
    }

    #main-nav a {
        font-size: 15px;
    }

    #main-nav .btn-presupuesto {
        width: auto;
        margin-top: 5px;
    }

}
/* =========================
   MENÚ MÓVIL
========================= */

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #222222;
    line-height: 1;
}


@media (max-width: 700px) {

    .navbar {
        position: relative;
        justify-content: space-between;
    }

    .menu-toggle {
        display: block;
    }

    #main-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding-top: 25px;
    }

    #main-nav.menu-open {
        display: flex;
    }

    #main-nav a {
        font-size: 15px;
    }

    #main-nav .btn-presupuesto {
        width: auto;
        margin-top: 5px;
    }

}
/* =========================
   CORRECCIÓN MENÚ MÓVIL
========================= */

@media screen and (max-width: 700px) {

    .navbar {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        box-sizing: border-box;
        padding: 18px 6%;
    }

    .logo {
        flex-shrink: 0;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
        font-size: 28px;
        cursor: pointer;
        color: #222222;
    }

    #main-nav {
        display: none !important;
        width: 100% !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 18px !important;
        padding: 25px 0 10px !important;
        margin: 0 !important;
        box-sizing: border-box;
    }

    #main-nav.menu-open {
        display: flex !important;
    }

    #main-nav a {
        display: block;
        width: auto;
        max-width: 100%;
        box-sizing: border-box;
        text-align: center;
        white-space: normal;
    }

    #main-nav .btn-presupuesto {
        width: auto;
        max-width: 90%;
    }

}
/* =========================
   WHATSAPP FLOTANTE
========================= */

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 15px 22px;

    background-color: #1d5f8f;
    color: #ffffff;

    text-decoration: none;
    font-size: 14px;
    font-weight: 700;

    border-radius: 50px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);

    transition: transform 0.3s ease,
                box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}


@media (max-width: 700px) {

    .whatsapp-float {
        right: 18px;
        bottom: 18px;
        padding: 13px 18px;
        font-size: 13px;
    }

}
/* =========================
   EQUIPO TONICHICO
========================= */

.team {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.team-card {
    width: 100%;
    overflow: hidden;
}

.team-image {
    width: 100%;
    height: 520px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}

.team-info {
    padding-top: 20px;
}


@media (max-width: 700px) {

    .team {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-image {
        height: 450px;
    }

}
/* =========================
   PÁGINA TODOS LOS PROYECTOS
========================= */

.projects-page-hero {
    min-height: 55vh;
    display: flex;
    align-items: center;
    padding: 80px 8%;
    background-color: #1d5f8f;
    color: #ffffff;
}

.projects-page-content {
    max-width: 850px;
}

.projects-page-content .section-small {
    color: #ffffff;
}

.projects-page-content h1 {
    font-size: 68px;
    line-height: 1.05;
    margin: 20px 0 25px;
}

.projects-page-content p:not(.section-small) {
    max-width: 600px;
    font-size: 19px;
    line-height: 1.6;
}


.all-projects {
    padding: 110px 8%;
}

.all-projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 35px;
    margin-top: 70px;
}

.all-projects-grid .project-card {
    width: 100%;
}


.projects-cta {
    padding: 110px 8%;
    text-align: center;
    background-color: #f5f7f9;
}

.projects-cta p {
    color: #1d5f8f;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.projects-cta h2 {
    color: #222222;
    font-size: 50px;
    line-height: 1.1;
    margin: 20px 0 35px;
}


@media (max-width: 700px) {

    .projects-page-hero {
        min-height: 55vh;
        padding: 70px 6%;
    }

    .projects-page-content h1 {
        font-size: 45px;
    }

    .projects-page-content p:not(.section-small) {
        font-size: 17px;
    }

    .all-projects {
        padding: 75px 6%;
    }

    .all-projects-grid {
        grid-template-columns: 1fr;
        gap: 45px;
        margin-top: 45px;
    }

    .projects-cta {
        padding: 80px 6%;
    }

    .projects-cta h2 {
        font-size: 38px;
    }

}
/* =========================
   PÁGINA PROYECTO INDIVIDUAL
========================= */

.project-detail-hero {
    min-height: 65vh;
    display: flex;
    align-items: center;
    padding: 90px 8%;
    background-color: #1d5f8f;
    color: #ffffff;
}

.project-detail-hero-content {
    max-width: 900px;
}

.project-detail-hero-content .section-small {
    color: #ffffff;
}

.project-detail-hero-content h1 {
    font-size: 68px;
    line-height: 1.05;
    margin: 20px 0 30px;
}

.project-detail-hero-content p:not(.section-small) {
    max-width: 650px;
    font-size: 19px;
    line-height: 1.6;
}


/* INTRO */

.project-detail-intro {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 100px;
    padding: 120px 8%;
}

.project-detail-intro-text h2 {
    font-size: 50px;
    line-height: 1.1;
    margin: 20px 0 30px;
}

.project-detail-intro-text p {
    max-width: 700px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.project-detail-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 30px;
}

.project-detail-info div {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 20px;
    border-bottom: 1px solid #dddddd;
}

.project-detail-info span {
    font-size: 12px;
    letter-spacing: 1.5px;
    color: #1d5f8f;
    font-weight: 700;
}

.project-detail-info strong {
    font-size: 18px;
}


/* IMAGEN PRINCIPAL */

.project-detail-image {
    width: 100%;
    height: 650px;
    overflow: hidden;
}

.project-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* PROCESO */

.project-process {
    padding: 120px 8%;
    background-color: #f5f7f9;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 70px;
}

.process-item span {
    color: #1d5f8f;
    font-size: 14px;
    font-weight: 700;
}

.process-item h3 {
    font-size: 25px;
    margin: 18px 0;
}

.process-item p {
    line-height: 1.7;
    max-width: 350px;
}


/* GALERÍA */

.project-gallery {
    padding: 120px 8%;
}

.project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 70px;
}

.gallery-item {
    height: 500px;
    overflow: hidden;
}

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


/* CTA */

.project-detail-cta {
    padding: 120px 8%;
    text-align: center;
    background-color: #f5f7f9;
}

.project-detail-cta p {
    color: #1d5f8f;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.project-detail-cta h2 {
    font-size: 50px;
    line-height: 1.1;
    margin: 20px 0 35px;
}


/* MÓVIL */

@media (max-width: 700px) {

    .project-detail-hero {
        min-height: 60vh;
        padding: 70px 6%;
    }

    .project-detail-hero-content h1 {
        font-size: 43px;
    }

    .project-detail-hero-content p:not(.section-small) {
        font-size: 17px;
    }

    .project-detail-intro {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 75px 6%;
    }

    .project-detail-intro-text h2 {
        font-size: 38px;
    }

    .project-detail-image {
        height: 400px;
    }

    .project-process {
        padding: 75px 6%;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 45px;
        margin-top: 50px;
    }

    .project-gallery {
        padding: 75px 6%;
    }

    .project-gallery-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 45px;
    }

    .gallery-item {
        height: 350px;
    }

    .project-detail-cta {
        padding: 80px 6%;
    }

    .project-detail-cta h2 {
        font-size: 38px;
    }

}
/* =========================
   NAVEGACIÓN ENTRE PROYECTOS
========================= */

.project-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;

    padding: 35px 8%;

    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
}

.project-navigation a {
    color: #222222;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;

    transition: color 0.3s ease;
}

.project-navigation a:hover {
    color: #1d5f8f;
}


@media (max-width: 700px) {

    .project-navigation {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 30px 6%;
    }

}
/* =========================
   TRANSFORMACIÓN BAÑO
========================= */

.bathroom-transformation {
    padding: 120px 8%;
    background-color: #f5f7f9;
}

.bathroom-stages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 70px;
}

.bathroom-stage-image {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.bathroom-stage-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.bathroom-stage-image span {
    position: absolute;
    left: 20px;
    bottom: 20px;

    padding: 9px 14px;

    background-color: #ffffff;
    color: #222222;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}


/* MÓVIL */

@media (max-width: 700px) {

    .bathroom-transformation {
        padding: 75px 6%;
    }

    .bathroom-stages {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 45px;
    }

    .bathroom-stage-image {
        height: 420px;
    }

}
/* =========================
   FOTOS BAÑO - LIGHTBOX
========================= */

.bathroom-lightbox {
    display: block;
    width: 100%;
    height: 100%;
    cursor: zoom-in;
}

.bathroom-lightbox img {
    transition: transform 0.4s ease;
}

.bathroom-lightbox:hover img {
    transform: scale(1.04);
}
/* =========================
   LIGHTBOX
========================= */

.lightbox {
    position: fixed;
    inset: 0;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 30px;

    background: rgba(0, 0, 0, 0.92);

    z-index: 9999;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 95%;
    max-height: 90vh;

    width: auto;
    height: auto;

    object-fit: contain;
}

.lightbox-close {
    position: absolute;

    top: 20px;
    right: 25px;

    width: 45px;
    height: 45px;

    border: none;

    background: transparent;

    color: white;

    font-size: 42px;
    line-height: 1;

    cursor: pointer;

    z-index: 10000;
}


@media (max-width: 700px) {

    .lightbox {
        padding: 15px;
    }

    .lightbox img {
        max-width: 100%;
        max-height: 85vh;
    }

    .lightbox-close {
        top: 10px;
        right: 15px;
    }

}
/* =========================
   EFECTO TARJETAS PROYECTOS
========================= */

.project-card {
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-6px);
}

.project-card .project-image {
    overflow: hidden;
}

.project-card .project-image img {
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.04);
}

.project-card .project-info a {
    transition: color 0.3s ease;
}

.project-card .project-info a:hover {
    color: #1d5f8f;
}
/* =========================
   MENÚ MÓVIL
========================= */

.menu-toggle {
    display: none;
}


/* TABLET Y MÓVIL */

@media (max-width: 900px) {

    .navbar {
        position: relative;
    }

    .menu-toggle {
        display: flex;

        align-items: center;
        justify-content: center;

        width: 42px;
        height: 42px;

        font-size: 28px;

        cursor: pointer;

        color: #222222;

        z-index: 1001;
    }


    #main-nav {
        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        display: none;

        flex-direction: column;

        width: 100%;

        padding: 20px 6% 25px;

        background-color: #ffffff;

        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

        z-index: 1000;
    }


    #main-nav.menu-open {
        display: flex;
    }


    #main-nav a {
        display: block;

        width: 100%;

        padding: 15px 0;

        font-size: 16px;

        text-decoration: none;

        color: #222222;

        border-bottom: 1px solid #eeeeee;
    }


    #main-nav a:last-child {
        border-bottom: none;
    }


    #main-nav .btn-presupuesto {
        width: 100%;

        margin-top: 15px;

        padding: 14px 20px;

        text-align: center;

        border-bottom: none;
    }

}


/* MÓVILES PEQUEÑOS */

@media (max-width: 480px) {

    .navbar {
        padding-left: 6%;
        padding-right: 6%;
    }

    .logo {
        font-size: 20px;
    }

    #main-nav {
        padding-left: 6%;
        padding-right: 6%;
    }

}
/* =========================
   AJUSTES TIPOGRAFÍA MÓVIL
========================= */

@media (max-width: 700px) {

    h1 {
        max-width: 100%;
        overflow-wrap: break-word;
    }

    h2 {
        max-width: 100%;
        overflow-wrap: break-word;
    }

    .section-header h2 {
        font-size: 36px;
        line-height: 1.1;
    }

    .section-description {
        font-size: 16px;
        line-height: 1.6;
    }

}
/* =========================
   CONTACTO FUNCIONAL
========================= */

.contact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.contact-grid {
    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.8fr 1.2fr;

    gap: 70px;

    text-align: left;
}


/* =========================
   INFORMACIÓN CONTACTO
========================= */

.contact-info {
    padding-top: 10px;
}

.contact-info h3 {
    font-size: 28px;
    margin: 0 0 20px;
}

.contact-info > p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.9;
}


.contact-person {
    display: flex;
    flex-direction: column;

    gap: 8px;

    margin-bottom: 25px;
}


.contact-person span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}


.contact-person a {
    color: #ffffff;
    text-decoration: none;

    font-size: 22px;
    font-weight: 600;
}


.contact-person a:hover {
    text-decoration: underline;
}


/* =========================
   WHATSAPP
========================= */

.whatsapp-button {
    display: inline-block;

    margin-top: 15px;

    padding: 15px 24px;

    background-color: #ffffff;
    color: #1d5f8f;

    text-decoration: none;

    font-weight: 700;

    border-radius: 5px;

    transition: 0.3s;
}


.whatsapp-button:hover {
    transform: translateY(-3px);
}


/* =========================
   FORMULARIO
========================= */

.contact-form {
    background-color: #ffffff;

    padding: 40px;

    border-radius: 5px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}


.form-group {
    margin-bottom: 25px;
}


.form-group label {
    display: block;

    margin-bottom: 8px;

    color: #222222;

    font-size: 14px;

    font-weight: 700;
}


.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;

    box-sizing: border-box;

    padding: 15px 16px;

    border: 1px solid #dddddd;

    border-radius: 4px;

    font-family: Arial, sans-serif;

    font-size: 15px;

    color: #222222;

    background-color: #ffffff;

    outline: none;

    transition: 0.3s;
}


.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #1d5f8f;

    box-shadow: 0 0 0 2px rgba(29, 95, 143, 0.08);
}


.form-group textarea {
    resize: vertical;

    min-height: 150px;
}


.form-button {
    width: 100%;

    padding: 17px 25px;

    border: none;

    border-radius: 5px;

    background-color: #1d5f8f;

    color: #ffffff;

    font-family: Arial, sans-serif;

    font-size: 15px;

    font-weight: 700;

    cursor: pointer;

    transition: 0.3s;
}


.form-button:hover {
    background-color: #16496e;

    transform: translateY(-2px);
}


/* =========================
   CONTACTO MÓVIL
========================= */

@media (max-width: 700px) {

    .contact-header {
        margin-bottom: 45px;
    }


    .contact-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .contact-info {
        text-align: center;
    }


    .contact-info h3 {
        font-size: 25px;
    }


    .contact-person {
        align-items: center;
    }


    .contact-form {
        padding: 25px 20px;
    }


    .form-group input,
    .form-group textarea {
        font-size: 16px;
    }

}
/* =========================
   PÁGINA GRACIAS
========================= */

.thank-you {
    min-height: calc(100vh - 80px);

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 80px 8%;

    box-sizing: border-box;

    background:
        linear-gradient(
            135deg,
            #0d3f63 0%,
            #1d5f8f 65%,
            #ffffff 100%
        );

    color: #ffffff;

    text-align: center;
}


.thank-you-content {
    max-width: 850px;

    margin: 0 auto;
}


.thank-you-content .section-small {
    color: #ffffff;

    margin-bottom: 25px;
}


.thank-you-content h1 {
    font-size: 64px;

    line-height: 1.05;

    margin: 0 0 30px;

    font-weight: 800;
}


.thank-you-content > p:not(.section-small) {
    max-width: 650px;

    margin: 0 auto 40px;

    font-size: 19px;

    line-height: 1.7;
}


.thank-you-buttons {
    display: flex;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;
}


.thank-you-buttons .btn-primary {
    color: #1d5f8f;
}


.btn-secondary-blue {
    display: inline-block;

    padding: 16px 28px;

    border: 1px solid #ffffff;

    border-radius: 5px;

    color: #ffffff;

    text-decoration: none;

    font-weight: 600;

    transition: 0.3s;
}


.btn-secondary-blue:hover {
    background-color: #ffffff;

    color: #1d5f8f;
}


/* MÓVIL */

@media (max-width: 700px) {

    .thank-you {
        min-height: calc(100vh - 70px);

        padding: 70px 6%;
    }


    .thank-you-content h1 {
        font-size: 42px;
    }


    .thank-you-content > p:not(.section-small) {
        font-size: 17px;
    }


    .thank-you-buttons {
        flex-direction: column;

        align-items: stretch;
    }


    .thank-you-buttons .btn-primary,
    .thank-you-buttons .btn-secondary-blue {
        width: 100%;

        box-sizing: border-box;

        text-align: center;
    }

}
/* =========================
   PÁGINAS LEGALES
========================= */

.legal-page {
    padding: 100px 8%;
    background-color: #ffffff;
    min-height: 60vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    color: #222222;
    font-size: 56px;
    line-height: 1.1;
    margin: 0 0 60px;
}

.legal-content h2 {
    color: #222222;
    font-size: 26px;
    margin: 45px 0 15px;
}

.legal-content p {
    color: #666666;
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 18px;
}

.legal-content a {
    color: #1d5f8f;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}


@media (max-width: 700px) {

    .legal-page {
        padding: 70px 6%;
    }

    .legal-content h1 {
        font-size: 40px;
        margin-bottom: 40px;
    }

    .legal-content h2 {
        font-size: 23px;
    }

    .legal-content p {
        font-size: 15px;
    }

}
/* =========================
   ICONOS REDES SOCIALES
========================= */

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #b9cbd8;
    text-decoration: none;

    font-size: 14px;
    transition: 0.3s ease;
}

.social-icons a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.social-icons svg {
    width: 21px;
    height: 21px;
    flex-shrink: 0;
}

/* === AJUSTE HERO TONICHICO === */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  display: flex;
  align-items: center;
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

@media (max-width: 900px) {
  .hero {
    min-height: 760px;
    background-position: 65% center;
    background-size: cover;
  }

  .hero-content {
    max-width: 90%;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 760px;
    background-position: 68% bottom;
    background-size: auto 100%;
    align-items: flex-start;
    padding-top: 110px;
  }

  .hero-content {
    max-width: 92%;
  }
}


/* === AJUSTE ESPECÍFICO HERO MÓVIL === */
@media (max-width: 600px) {
  .hero {
    min-height: 700px;
    background-size: auto 78%;
    background-position: 72% bottom;
    background-repeat: no-repeat;
    align-items: flex-start;
    padding-top: 85px;
    padding-bottom: 40px;
  }

  .hero-content {
    max-width: 90%;
    position: relative;
    z-index: 2;
  }
}

@media (min-width: 601px) and (max-width: 900px) {
  .hero {
    min-height: 720px;
    background-size: cover;
    background-position: 68% center;
  }
}


/* === SEGUNDO AJUSTE HERO MÓVIL: IMAGEN MÁS PEQUEÑA === */
@media (max-width: 600px) {
  .hero {
    min-height: 650px;
    background-size: auto 58%;
    background-position: 72% bottom;
    background-repeat: no-repeat;
    align-items: flex-start;
    padding-top: 75px;
    padding-bottom: 30px;
  }

  .hero-content {
    max-width: 92%;
  }
}


/* === FOOTER V2: ICONOS + REDES DEBAJO DEL BLOQUE PRINCIPAL === */
.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr;
    column-gap: 60px;
    row-gap: 42px;
}

.footer-contact-item {
    display: flex !important;
    align-items: center;
    gap: 12px;
    color: #b9cbd8 !important;
    text-decoration: none;
}

.contact-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 27px;
    height: 27px;
}

.whatsapp-icon {
    color: #25D366;
}

.phone-icon {
    color: #b9cbd8;
}

.footer-social {
    grid-column: 1 / -1;
    width: 100%;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.footer-social h3 {
    margin: 0 0 18px;
    text-align: center;
}

.social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 42px;
}

.social-icons a {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    color: #b9cbd8 !important;
    text-decoration: none;
}

.social-icons a svg {
    width: 28px;
    height: 28px;
}

@media (max-width: 700px) {
    .footer-content {
        grid-template-columns: 1fr;
        row-gap: 34px;
    }

    .footer-social {
        grid-column: 1;
        width: 100%;
        align-items: flex-start;
        padding-top: 26px;
    }

    .footer-social h3 {
        text-align: left;
        margin-bottom: 14px;
    }

    .social-icons {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
}

/* === FOOTER V3 === */
.footer-content {
    grid-template-columns: 1.4fr 0.8fr 1fr;
    column-gap: 60px;
    row-gap: 42px;
}

/* Síguenos: debajo de la marca, alineado a la izquierda */
.footer-social {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 24px 0 0;
    padding: 0;
    border-top: 0;
}

.footer-social h3 {
    margin: 0 0 16px;
    text-align: left;
}

.social-icons {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 22px;
    flex-direction: column;
}

.social-icons a {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
}

.social-icons a svg {
    width: 27px;
    height: 27px;
}

/* WhatsApp: icono verde reconocible */
.whatsapp-icon {
    color: #25D366;
}

.whatsapp-icon svg {
    width: 30px !important;
    height: 30px !important;
}

@media (max-width: 700px) {
    .footer-content {
        grid-template-columns: 1fr;
        row-gap: 30px;
    }

    .footer-social {
        grid-column: 1;
        margin: 0;
        padding: 0;
        align-items: flex-start;
    }

    .footer-social h3 {
        text-align: left;
    }

    .social-icons {
        align-items: flex-start;
        gap: 14px;
    }
}


/* === FOOTER V4 — INTERCAMBIO CONTACTO / SÍGUENOS === */
@media (min-width: 701px) {
    .footer-content {
        grid-template-columns: 1.4fr 1fr 0.8fr;
        column-gap: 60px;
    }

    .footer-contact {
        grid-column: 2;
        grid-row: 1;
    }

    .footer-social {
        grid-column: 3;
        grid-row: 1;
        margin-top: 0;
        padding-top: 0;
        align-items: flex-start;
    }

    .footer-social h3 {
        text-align: left;
    }

    .social-icons {
        align-items: flex-start;
        justify-content: flex-start;
    }
}

@media (max-width: 700px) {
    .footer-contact,
    .footer-social {
        grid-column: 1;
        grid-row: auto;
    }

    .footer-contact {
        order: 2;
    }

    .footer-social {
        order: 3;
    }
}
/* =========================
   RESEÑAS
========================= */

.reviews {
    padding: 110px 8%;
    background-color: #f5f7f9;
}


/* CABECERA */

.reviews-header {
    max-width: 750px;
    margin-bottom: 60px;
}

.reviews-header h2 {
    color: #222222;
    font-size: 48px;
    line-height: 1.05;
    margin: 0 0 25px;
}

.reviews-header > p:last-child {
    color: #666666;
    font-size: 17px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0;
}


/* BLOQUE CENTRAL */

.reviews-empty {
    max-width: 750px;
    margin: 0 auto;
    padding: 55px 40px;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    text-align: center;
    box-sizing: border-box;
}


/* ESTRELLAS */

.reviews-stars {
    color: #1d5f8f;
    font-size: 28px;
    letter-spacing: 5px;
    margin-bottom: 25px;
}


/* TÍTULO */

.reviews-empty h3 {
    color: #222222;
    font-size: 30px;
    line-height: 1.2;
    margin: 0 0 15px;
}


/* TEXTO */

.reviews-empty p {
    color: #666666;
    font-size: 17px;
    line-height: 1.6;
    max-width: 550px;
    margin: 0 auto 30px;
}


/* BOTÓN */

.reviews-empty .btn-primary-blue {
    margin-top: 5px;
}


/* =========================
   MÓVIL
========================= */

@media (max-width: 700px) {

    .reviews {
        padding: 75px 6%;
    }

    .reviews-header {
        margin-bottom: 45px;
    }

    .reviews-header h2 {
        font-size: 36px;
    }

    .reviews-header > p:last-child {
        font-size: 16px;
    }

    .reviews-empty {
        padding: 40px 25px;
    }

    .reviews-stars {
        font-size: 23px;
        letter-spacing: 4px;
    }

    .reviews-empty h3 {
        font-size: 26px;
    }

    .reviews-empty p {
        font-size: 16px;
    }

}
/* =========================
   CONTACTO - DISTRIBUCIÓN
========================= */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 130px;
    align-items: start;
}


/* FORMULARIO A LA IZQUIERDA */

.contact-form {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
}


/* INFORMACIÓN DE CONTACTO A LA DERECHA */

.contact-info {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
}


/* EVITAR QUE EL FORMULARIO BAJE */

.contact-form form {
    margin-top: 0;
}


/* =========================
   MÓVIL
========================= */

@media (max-width: 800px) {

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-form {
        grid-column: 1;
        grid-row: 1;
    }

    .contact-info {
        grid-column: 1;
        grid-row: 2;
    }

}
