/* ==========================================================
   NEXORA WEB - HOJA DE ESTILOS PRINCIPAL

   Secciones:
   1. Configuración general
   2. Header y navegación
   3. Hero / Inicio
   4. Servicios
   5. Portafolio
   6. Modal
   7. Precios
   8. Nosotros
   9. Contacto
   10. Footer
   11. Responsive Tablet
   12. Responsive Celular
========================================================== */


/* ==========================================================
   1. CONFIGURACIÓN GENERAL
========================================================== */

/* Elimina márgenes predeterminados y hace que padding/border
   formen parte del tamaño total de los elementos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Desplazamiento suave cuando usamos enlaces como #servicios */
html {
    scroll-behavior: smooth;
}


/* Estilos generales de toda la página */
body {
    font-family: Arial, Helvetica, sans-serif;
    background: #07111f;
    color: #ffffff;
}


/* Evita subrayado predeterminado en enlaces */
a {
    text-decoration: none;
    color: inherit;
}


/* Contenedor principal reutilizable */
.container {
    width: min(1180px, 90%);
    margin: 0 auto;
}



/* ==========================================================
   2. HEADER / NAVEGACIÓN
========================================================== */

.header {
    width: 100%;

    background: rgba(4, 10, 20, 0.95);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.06);

    /* Mantiene el menú visible al hacer scroll */
    position: sticky;
    top: 0;

    z-index: 1000;
}


.nav {
    min-height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* =========================
   LOGO
========================= */

.logo {
    display: flex;
    align-items: center;

    gap: 10px;
}


.logo-icon {
    font-size: 31px;
    font-weight: bold;

    color: #3478ff;
}


.logo h2 {
    font-size: 22px;
    line-height: 1;
}


.logo small {
    display: block;

    margin-top: 4px;

    font-size: 9px;
    letter-spacing: 2px;

    color: #7d8ba3;
}


/* =========================
   MENÚ PRINCIPAL
========================= */

.menu {
    display: flex;
    align-items: center;

    gap: 32px;
}


.menu a {
    color: #d8dee9;

    font-size: 15px;

    transition: color 0.3s ease;
}


.menu a:hover,
.menu a.active {
    color: #3478ff;
}


/* ==========================================================
   3. HERO / INICIO
========================================================== */

.hero {
    min-height: calc(100vh - 76px);

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 70% 30%,
            rgba(42, 104, 255, 0.20),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #06101d,
            #09172a
        );
}


.hero-content {
    padding: 80px 0;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 70px;
}


/* =========================
   TEXTO HERO
========================= */

.hero-tag {
    display: inline-block;

    padding: 8px 12px;

    margin-bottom: 20px;

    background: rgba(36, 107, 253, 0.10);

    border:
        1px solid rgba(52, 120, 255, 0.25);

    border-radius: 20px;

    color: #4d8cff;

    font-size: 12px;
    font-weight: bold;
}


.hero-text h1 {
    font-size: clamp(44px, 5vw, 68px);

    line-height: 1.05;

    margin-bottom: 25px;
}


.hero-text h1 span {
    color: #3478ff;
}


.hero-text p {
    max-width: 620px;

    margin-bottom: 30px;

    color: #b6c0d0;

    font-size: 18px;

    line-height: 1.7;
}


/* =========================
   BOTONES HERO
========================= */

.hero-buttons {
    display: flex;

    gap: 15px;

    flex-wrap: wrap;

    margin-bottom: 32px;
}


/* =========================
   BENEFICIOS
========================= */

.hero-benefits {
    display: flex;

    gap: 25px;

    flex-wrap: wrap;

    color: #aeb9ca;

    font-size: 14px;
}


/* =========================
/* ==========================================================
   TÍTULOS GENERALES DE SECCIONES
========================================================== */

.section-title {
    max-width: 700px;

    margin: 0 auto 55px;

    text-align: center;
}


.section-title span {
    display: inline-block;

    margin-bottom: 12px;

    color: #3478ff;

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 2px;
}


.section-title h2 {
    margin-bottom: 15px;

    font-size: 38px;

    line-height: 1.2;
}


.section-title p {
    color: #9eabc0;

    font-size: 16px;

    line-height: 1.7;
}



/* ==========================================================
   4. SERVICIOS
========================================================== */

.services {
    padding: 100px 0;

    background: #07111f;

    scroll-margin-top: 76px;
}


.services-grid {
    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 18px;
}


/* Tarjeta individual */
.service-card {
    min-height: 260px;

    padding: 32px 22px;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            #0d1929,
            #0a1422
        );

    border:
        1px solid rgba(255, 255, 255, 0.08);

    border-radius: 12px;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.service-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(52, 120, 255, 0.55);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.25),
        0 0 30px rgba(52, 120, 255, 0.08);
}


/* Icono */
.service-icon {
    width: 60px;
    height: 60px;

    margin-bottom: 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(52, 120, 255, 0.10);

    border:
        1px solid rgba(52, 120, 255, 0.20);

    border-radius: 12px;

    font-size: 28px;
}


.service-card h3 {
    margin-bottom: 12px;

    font-size: 18px;
}


.service-card p {
    color: #9eabc0;

    font-size: 14px;

    line-height: 1.6;
}



/* ==========================================================
   5. PORTAFOLIO
========================================================== */

.portfolio {
    padding: 100px 0;

    background: #091423;

    scroll-margin-top: 76px;
}


.portfolio-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 30px;
}


.portfolio-card {
    overflow: hidden;

    background: #0c1828;

    border:
        1px solid rgba(255, 255, 255, 0.08);

    border-radius: 14px;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.portfolio-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(52, 120, 255, 0.45);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.25);
}


/* Imagen / placeholder del proyecto */
.portfolio-image {
    height: 260px;

    overflow: hidden;
}


.project-placeholder {
    width: 100%;
    height: 100%;

    padding: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    background:
        radial-gradient(
            circle at 60% 30%,
            rgba(52, 120, 255, 0.35),
            transparent 40%
        ),
        linear-gradient(
            135deg,
            #0a1830,
            #111f34
        );

    color: white;

    font-size: 28px;

    font-weight: bold;
}


/* Información del proyecto */
.portfolio-info {
    padding: 28px;
}


.project-type {
    display: inline-block;

    margin-bottom: 12px;

    color: #4d8cff;

    font-size: 12px;

    font-weight: bold;
}


.portfolio-info h3 {
    margin-bottom: 12px;

    font-size: 25px;
}


.portfolio-info p {
    margin-bottom: 22px;

    color: #9eabc0;

    line-height: 1.7;
}


/* ==========================================================
   6. MODAL DEL PORTAFOLIO
========================================================== */

.project-modal {
    position: fixed;

    inset: 0;

    z-index: 5000;

    display: none;

    align-items: center;

    justify-content: center;

    padding: 20px;
}


/* JavaScript agrega esta clase cuando abre el modal */
.project-modal.active {
    display: flex;
}


.modal-overlay {
    position: absolute;

    inset: 0;

    background:
        rgba(0, 0, 0, 0.75);

    backdrop-filter: blur(5px);
}


.modal-content {
    position: relative;

    z-index: 2;

    width: min(600px, 100%);

    padding: 45px;

    background: #0c1828;

    border:
        1px solid rgba(255, 255, 255, 0.10);

    border-radius: 16px;

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.50);
}


.modal-type {
    display: inline-block;

    margin-bottom: 12px;

    color: #4d8cff;

    font-size: 12px;

    font-weight: bold;
}


.modal-content h2 {
    margin-bottom: 18px;

    font-size: 32px;
}


.modal-content > p {
    margin-bottom: 30px;

    color: #aab5c5;

    line-height: 1.7;
}


.modal-details {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;
}


.modal-details div {
    padding: 18px;

    background: #091321;

    border:
        1px solid rgba(255, 255, 255, 0.06);

    border-radius: 10px;
}


.modal-details span {
    display: block;

    margin-bottom: 7px;

    color: #7e8ca1;

    font-size: 12px;
}


.modal-details strong {
    font-size: 14px;
}



/* ==========================================================
   7. PRECIOS
========================================================== */

.pricing {
    padding: 100px 0;

    background: #07111f;

    scroll-margin-top: 76px;
}


.pricing-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

    align-items: stretch;
}


/* Tarjeta de precio */
.pricing-card {
    position: relative;

    padding: 35px 30px;

    display: flex;

    flex-direction: column;

    background:
        linear-gradient(
            145deg,
            #0d1929,
            #091422
        );

    border:
        1px solid rgba(255, 255, 255, 0.08);

    border-radius: 14px;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.pricing-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(52, 120, 255, 0.45);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.28);
}


/* Plan destacado */
.pricing-card.featured {
    border-color:
        rgba(52, 120, 255, 0.70);

    box-shadow:
        0 0 40px rgba(52, 120, 255, 0.10);
}


.pricing-popular {
    position: absolute;

    top: -13px;
    left: 50%;

    transform: translateX(-50%);

    padding: 7px 15px;

    background: #246bfd;

    border-radius: 20px;

    font-size: 10px;

    font-weight: bold;

    letter-spacing: 1px;

    white-space: nowrap;
}


.pricing-tag {
    margin-bottom: 15px;

    color: #4d8cff;

    font-size: 11px;

    font-weight: bold;

    letter-spacing: 2px;
}


.pricing-card h3 {
    margin-bottom: 15px;

    font-size: 25px;
}


.pricing-description {
    min-height: 78px;

    margin-bottom: 25px;

    color: #9eabc0;

    line-height: 1.6;
}


/* Precio */
.price {
    margin-bottom: 25px;
}


.price span {
    display: block;

    margin-bottom: 5px;

    color: #7f8da2;

    font-size: 12px;
}


.price strong {
    color: white;

    font-size: 34px;
}


.custom-price strong {
    font-size: 23px;
}


/* Características */
.pricing-features {
    list-style: none;

    margin-bottom: 30px;
}


.pricing-features li {
    padding: 10px 0;

    color: #b4bfd0;

    font-size: 14px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.05);
}


.pricing-note {
    max-width: 650px;

    margin: 35px auto 0;

    text-align: center;

    color: #77869b;

    font-size: 13px;

    line-height: 1.6;
}



/* ==========================================================
   8. NOSOTROS
========================================================== */

.about {
    padding: 100px 0;

    background: #091423;

    scroll-margin-top: 76px;
}


.about-content {
    display: grid;

    grid-template-columns:
        1.1fr 0.9fr;

    gap: 70px;

    align-items: center;
}


/* Texto */
.about-tag {
    display: inline-block;

    margin-bottom: 15px;

    color: #3478ff;

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 2px;
}


.about-text h2 {
    max-width: 650px;

    margin-bottom: 25px;

    font-size: 40px;

    line-height: 1.2;
}


.about-text > p {
    max-width: 650px;

    margin-bottom: 18px;

    color: #a6b2c4;

    font-size: 16px;

    line-height: 1.8;
}


/* Beneficios */
.about-benefits {
    margin-top: 35px;

    display: flex;

    flex-direction: column;

    gap: 22px;
}


.about-benefit {
    display: flex;

    gap: 16px;
}


.about-benefit > span {
    width: 34px;
    height: 34px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(52, 120, 255, 0.12);

    border:
        1px solid rgba(52, 120, 255, 0.30);

    border-radius: 50%;

    color: #5e94ff;

    font-weight: bold;
}


.about-benefit h3 {
    margin-bottom: 5px;

    font-size: 17px;
}


.about-benefit p {
    color: #8f9db1;

    font-size: 14px;

    line-height: 1.6;
}


/* Tarjetas de estadísticas */
.about-card {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;
}


.about-stat {
    min-height: 165px;

    padding: 28px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            #0d1929,
            #091422
        );

    border:
        1px solid rgba(255, 255, 255, 0.08);

    border-radius: 14px;

    transition: 0.3s ease;
}


.about-stat:hover {
    transform: translateY(-5px);

    border-color:
        rgba(52, 120, 255, 0.45);
}


.about-stat strong {
    margin-bottom: 10px;

    color: #4d8cff;

    font-size: 29px;
}


.about-stat span {
    color: #aab5c5;

    font-size: 14px;

    line-height: 1.5;
}



/* ==========================================================
   9. CONTACTO
========================================================== */

.contact {
    padding: 100px 0;

    background:
        radial-gradient(
            circle at 20% 30%,
            rgba(36, 107, 253, 0.10),
            transparent 30%
        ),
        #07111f;

    scroll-margin-top: 76px;
}


.contact-grid {
    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    gap: 70px;

    align-items: start;
}


/* Información */
.contact-tag {
    display: inline-block;

    margin-bottom: 15px;

    color: #3478ff;

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 2px;
}


.contact-info h3 {
    max-width: 500px;

    margin-bottom: 20px;

    font-size: 32px;

    line-height: 1.25;
}


.contact-info > p {
    max-width: 520px;

    margin-bottom: 35px;

    color: #9eabc0;

    line-height: 1.7;
}


/* Opciones de contacto */
.contact-option {
    width: 100%;

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 15px;

    padding: 18px;

    background: #0c1828;

    border:
        1px solid rgba(255, 255, 255, 0.07);

    border-radius: 10px;

    transition: 0.3s ease;
}


a.contact-option:hover {
    transform: translateX(5px);

    border-color:
        rgba(52, 120, 255, 0.45);
}


.contact-icon {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(52, 120, 255, 0.10);

    border:
        1px solid rgba(52, 120, 255, 0.20);

    border-radius: 9px;

    font-size: 20px;
}


.contact-option span {
    display: block;

    margin-bottom: 5px;

    color: #7e8da3;

    font-size: 12px;
}


.contact-option strong {
    color: #e8edf5;

    font-size: 14px;
}



/* =========================
   FORMULARIO
========================= */

.contact-form-container {
    padding: 35px;

    background:
        linear-gradient(
            145deg,
            #0d1929,
            #091422
        );

    border:
        1px solid rgba(255, 255, 255, 0.08);

    border-radius: 15px;

    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.20);
}


.contact-form {
    display: flex;

    flex-direction: column;

    gap: 20px;
}


.form-group {
    display: flex;

    flex-direction: column;

    gap: 8px;
}


.form-group label {
    color: #d5dce7;

    font-size: 13px;

    font-weight: bold;
}


.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 14px 15px;

    background: #07111f;

    border:
        1px solid rgba(255, 255, 255, 0.10);

    border-radius: 7px;

    color: white;

    font-family: inherit;

    font-size: 14px;

    outline: none;

    transition: 0.3s ease;
}


/* Estado activo del campo */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #3478ff;

    box-shadow:
        0 0 0 3px rgba(52, 120, 255, 0.10);
}


.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #657388;
}


.form-group textarea {
    min-height: 130px;

    resize: vertical;
}


.form-group select {
    cursor: pointer;
}


.form-note {
    text-align: center;

    color: #718096;

    font-size: 12px;

    line-height: 1.5;
}



/* ==========================================================
   10. FOOTER
========================================================== */

.footer {
    padding: 70px 0 25px;

    background: #040a14;

    border-top:
        1px solid rgba(255, 255, 255, 0.06);
}


.footer-content {
    padding-bottom: 50px;

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1fr;

    gap: 50px;
}


/* Marca */
.footer-brand > p {
    max-width: 320px;

    margin-top: 20px;

    color: #7e8da3;

    font-size: 14px;

    line-height: 1.7;
}


/* Columnas */
.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 12px;
}


.footer-column h3 {
    margin-bottom: 7px;

    color: white;

    font-size: 15px;
}


.footer-column a,
.footer-column span {
    color: #7e8da3;

    font-size: 13px;

    transition: color 0.3s ease;
}


.footer-column a:hover {
    color: #3478ff;
}


/* Parte inferior */
.footer-bottom {
    padding-top: 25px;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    border-top:
        1px solid rgba(255, 255, 255, 0.06);

    color: #59677a;

    font-size: 12px;
}

/* ==========================================================
   LOGO NEXORA WEB - HEADER
========================================================== */

.logo-nexora {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 76px;
    text-decoration: none;
}

.logo-nexora-img {
    display: block;
    width: 190px;
    height: 68px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-nexora:hover .logo-nexora-img {
    transform: scale(1.03);
}

@media (max-width: 980px) {
    .logo-nexora-img {
        width: 170px;
        height: 62px;
    }
}

@media (max-width: 600px) {
    .logo-nexora {
        height: 68px;
    }

    .logo-nexora-img {
        width: 145px;
        height: 54px;
    }
}


/* ==========================================================
   LOGO NEXORA WEB - FOOTER
========================================================== */

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: fit-content;
    height: auto;
    margin-bottom: 20px;
    text-decoration: none;
}

.footer-logo-img {
    display: block;
    width: 210px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
    transform: scale(1.03);
}

@media (max-width: 980px) {
    .footer-logo-img {
        width: 195px;
    }
}

@media (max-width: 600px) {
    .footer-logo {
        justify-content: center;
    }

    .footer-logo-img {
        width: 175px;
    }
}


/* ==========================================================
   11. RESPONSIVE TABLET
   Pantallas de 980px o menos
========================================================== */

@media (max-width: 980px) {

    /* =====================
       HEADER
    ===================== */

    .menu {
        display: none;
    }


    /* =====================
       HERO
    ===================== */

    .hero-content {
        grid-template-columns: 1fr;

        text-align: center;
    }


    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }


    .hero-buttons,
    .hero-benefits {
        justify-content: center;
    }


/* =====================
       SERVICIOS
    ===================== */

    .services-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    /* =====================
       PORTAFOLIO
    ===================== */

    .portfolio-grid {
        grid-template-columns: 1fr;
    }


    /* =====================
       PRECIOS
    ===================== */

    .pricing-grid {
        max-width: 650px;

        margin-left: auto;
        margin-right: auto;

        grid-template-columns: 1fr;
    }


    .pricing-description {
        min-height: auto;
    }


    /* =====================
       NOSOTROS
    ===================== */

    .about-content {
        grid-template-columns: 1fr;
    }


    .about-text {
        text-align: center;
    }


    .about-text h2,
    .about-text > p {
        margin-left: auto;
        margin-right: auto;
    }


    .about-benefit {
        text-align: left;
    }


    .about-card {
        max-width: 650px;

        margin: 0 auto;
    }


    /* =====================
       CONTACTO
    ===================== */

    .contact-grid {
        max-width: 700px;

        margin: 0 auto;

        grid-template-columns: 1fr;
    }


    /* =====================
       FOOTER
    ===================== */

    .footer-content {
        grid-template-columns:
            repeat(2, 1fr);
    }
}



/* ==========================================================
   12. RESPONSIVE CELULAR
   Pantallas de 600px o menos
========================================================== */

@media (max-width: 600px) {

    /* =====================
       HEADER
    ===================== */

    .nav {
        min-height: 68px;
    }
/* =====================
       HERO
    ===================== */

    .hero-content {
        padding: 55px 0;
    }


    .hero-text h1 {
        font-size: 42px;
    }


    .hero-text p {
        font-size: 16px;
    }


    .hero-buttons {
        flex-direction: column;
    }
.hero-benefits {
        flex-direction: column;

        gap: 12px;
    }

/* =====================
       TÍTULOS
    ===================== */

    .section-title {
        margin-bottom: 40px;
    }


    .section-title h2 {
        font-size: 30px;
    }


    .section-title p {
        font-size: 15px;
    }


    /* =====================
       SERVICIOS
    ===================== */

    .services {
        padding: 70px 0;
    }


    .services-grid {
        grid-template-columns: 1fr;
    }


    .service-card {
        min-height: auto;
    }


    /* =====================
       PORTAFOLIO
    ===================== */

    .portfolio {
        padding: 70px 0;
    }


    .portfolio-image {
        height: 210px;
    }


    .portfolio-info {
        padding: 22px;
    }


    .portfolio-info h3 {
        font-size: 22px;
    }


    /* =====================
       MODAL
    ===================== */

    .modal-content {
        padding: 35px 22px 25px;
    }


    .modal-content h2 {
        font-size: 27px;
    }


    .modal-details {
        grid-template-columns: 1fr;
    }


    /* =====================
       PRECIOS
    ===================== */

    .pricing {
        padding: 70px 0;
    }


    .pricing-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .pricing-card {
        padding: 30px 22px;
    }


    .pricing-card h3 {
        font-size: 23px;
    }


    .pricing-description {
        min-height: auto;
    }


    .price strong {
        font-size: 30px;
    }


    .custom-price strong {
        font-size: 21px;
    }


    .pricing-features li {
        font-size: 14px;
    }
.pricing-note {
        margin-top: 30px;

        padding: 0 10px;
    }


    /* =====================
       NOSOTROS
    ===================== */

    .about {
        padding: 70px 0;
    }


    .about-text h2 {
        font-size: 30px;
    }


    .about-card {
        grid-template-columns: 1fr;
    }


    .about-stat {
        min-height: 130px;
    }


    /* =====================
       CONTACTO
    ===================== */

    .contact {
        padding: 70px 0;
    }


    .contact-info h3 {
        font-size: 27px;
    }


    .contact-form-container {
        padding: 25px 20px;
    }


    /* Evita que textos largos desborden */
    .contact-option strong {
        overflow-wrap: anywhere;
    }


    /* =====================
       FOOTER
    ===================== */

    .footer {
        padding-top: 55px;
    }


    .footer-content {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    .footer-bottom {
        flex-direction: column;

        align-items: center;

        text-align: center;
    }
}

