/* =========================================================
   CADIK
   STYLE.CSS
   ========================================================= */


/* =========================================================
   01. RESET Y BASE
   ========================================================= */

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


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Montserrat", Arial, sans-serif;
    background: #ffffff;
    color: #172033;
    line-height: 1.6;
    overflow-x: hidden;
}


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


a {
    color: inherit;
    text-decoration: none;
}


button,
a {
    -webkit-tap-highlight-color: transparent;
}


ul {
    list-style: none;
}


button {
    font-family: inherit;
}


/* =========================================================
   02. CONTENEDORES GENERALES
   ========================================================= */

.header-container,
.hero-container,
.home-cards-container,
.stats-container,
.home-cta-container,
.footer-container,
.footer-bottom-container {
    width: min(1200px, calc(100% - 80px));
    margin: 0 auto;
}


/* =========================================================
   03. HEADER
   ========================================================= */

.site-header {
    position: relative;
    z-index: 10000;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid rgba(15, 31, 58, 0.08);
}


.header-container {
    min-height: 88px;

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

    gap: 30px;
}


/* =========================================================
   LOGO
   ========================================================= */

.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}


.brand-logo {
    width: 225px;
    height: auto;
    object-fit: contain;
}


/* =========================================================
   04. NAVEGACIÓN
   ========================================================= */

.main-navigation {
    display: flex;
    align-items: center;
    margin-left: auto;
}


.nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
}


.nav-item {
    position: relative;
}


.nav-item > a {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 88px;

    color: #172033;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 0.01em;

    transition:
        color 0.25s ease,
        background-color 0.25s ease;
}


.nav-item > a::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 23px;

    height: 2px;

    background: #f47c20;

    transform: scaleX(0);
    transform-origin: center;

    transition: transform 0.25s ease;
}


.nav-item:hover > a,
.nav-item.active > a {
    color: #f47c20;
}


.nav-item:hover > a::after,
.nav-item.active > a::after {
    transform: scaleX(1);
}


/* =========================================================
   05. MENÚ DESPLEGABLE
   ========================================================= */

.has-dropdown > a {
    padding-right: 17px;
}


.has-dropdown > a::before {
    content: "";

    position: absolute;

    right: 0;
    top: 50%;

    width: 6px;
    height: 6px;

    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;

    transform:
        translateY(-65%)
        rotate(45deg);
}


.dropdown-menu {
    position: absolute;

    top: calc(100% - 1px);
    left: 50%;

    min-width: 245px;

    padding: 12px 0;

    background: #ffffff;

    border-top: 3px solid #f47c20;

    box-shadow:
        0 15px 35px rgba(15, 31, 58, 0.14);

    opacity: 0;
    visibility: hidden;

    transform:
        translate(-50%, 10px);

    transition:
        opacity 0.22s ease,
        visibility 0.22s ease,
        transform 0.22s ease;
}


.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;

    transform:
        translate(-50%, 0);
}


.dropdown-menu a {
    display: block;

    padding: 11px 22px;

    color: #172033;

    font-size: 12px;
    font-weight: 500;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        padding-left 0.2s ease;
}


.dropdown-menu a:hover {
    color: #f47c20;
    background: #f5f7fa;
    padding-left: 27px;
}


/* =========================================================
   06. BOTÓN COTIZAR
   ========================================================= */

.header-quote-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;
    padding: 0 20px;

    color: #ffffff;
    background: #f47c20;

    border: 1px solid #f47c20;

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.04em;

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}


.header-quote-button:hover {
    background: #d96512;
    border-color: #d96512;
    transform: translateY(-2px);
}


/* =========================================================
   06B. BOTÓN COTIZAR — PÁGINAS INTERNAS
   Mantiene exactamente el mismo aspecto del botón de inicio.
   ========================================================= */

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;
    padding: 0 20px;

    color: #ffffff;
    background: #f47c20;

    border: 1px solid #f47c20;

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.04em;

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.header-cta:hover {
    color: #ffffff;
    background: #d96512;
    border-color: #d96512;
    transform: translateY(-2px);
}


/* =========================================================
   07. BOTÓN MENÚ MÓVIL
   ========================================================= */

.mobile-menu-button {
    display: none;

    width: 42px;
    height: 42px;

    padding: 8px;

    border: 0;
    background: transparent;

    cursor: pointer;
}


.mobile-menu-button span {
    display: block;

    width: 100%;
    height: 2px;

    margin: 5px 0;

    background: #172033;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}


/* =========================================================
   08. HERO
   ========================================================= */

.hero-section {
    position: relative;

    min-height: 560px;

    background-image:
        linear-gradient(
            90deg,
            rgba(11, 28, 56, 0.94) 0%,
            rgba(11, 28, 56, 0.86) 38%,
            rgba(11, 28, 56, 0.55) 68%,
            rgba(11, 28, 56, 0.28) 100%
        ),
        url("../images/inicio/hero-industrial.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
}


/* Elemento decorativo naranja */
.hero-section::before {
    content: "";

    position: absolute;

    top: -180px;
    right: -120px;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background: rgba(244, 124, 32, 0.08);
}


/* Contenedor principal */
.hero-container {
    position: relative;
    z-index: 1;

    min-height: 560px;

    display: flex;
    align-items: center;

    padding-top: 35px;
    padding-bottom: 35px;
}


/* Contenido */
.hero-content {
    width: 52%;
    max-width: 650px;

    position: relative;
    z-index: 2;
}


/* La imagen ya no será una columna independiente */
.hero-visual {
    display: none;
}


/* =========================================================
   HERO — CONTENIDO
   ========================================================= */

.hero-content {
    max-width: 570px;
}


.hero-eyebrow {
    display: inline-block;

    margin-bottom: 18px;

    color: #f47c20;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.16em;
}


.hero-title {
    color: #ffffff;

    font-size: clamp(42px, 4.4vw, 66px);
    line-height: 1.05;

    font-weight: 700;

    letter-spacing: -0.035em;
}


.hero-title span {
    display: block;

    color: #f47c20;
}


.hero-description {
    max-width: 500px;

    margin-top: 25px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 15px;
    line-height: 1.85;
}


/* =========================================================
   HERO — BOTONES
   ========================================================= */

.hero-actions {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-top: 34px;
}


.button {
    display: inline-flex;

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

    min-height: 48px;

    padding: 0 23px;

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.06em;

    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}


.button-primary {
    color: #ffffff;
    background: #f47c20;

    border: 1px solid #f47c20;
}


.button-primary:hover {
    background: #d96512;
    border-color: #d96512;

    transform: translateY(-2px);
}


.button-secondary {
    color: #ffffff;

    background: transparent;

    border: 1px solid rgba(255, 255, 255, 0.45);
}


.button-secondary:hover {
    color: #172033;

    background: #ffffff;

    border-color: #ffffff;

    transform: translateY(-2px);
}


.button-arrow {
    margin-left: 12px;

    font-size: 17px;
    line-height: 1;
}


/* =========================================================
   HERO — IMAGEN
   ========================================================= */

.hero-visual {
    position: relative;

    height: 450px;
}


.hero-image-wrapper {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;

    border-radius: 2px;

    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.24);
}


.hero-image {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.7s ease;
}


.hero-image-wrapper:hover .hero-image {
    transform: scale(1.025);
}


/* =========================================================
   TARJETAS DE INICIO
   ========================================================= */

.home-cards-container {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 10px;

    width: min(1200px, calc(100% - 80px));
    margin: 0 auto;
}


.home-cards-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 10px;

    width: 100%;
}


/* =========================================================
   TARJETA
   ========================================================= */

.home-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-width: 0;

    /* Altura suficiente para mantener contenido + imagen cuadrada */
    height: 590px;

    background: #ffffff;

    overflow: hidden;
}


/* =========================================================
   CONTENIDO DE LA TARJETA
   ========================================================= */

.home-card-content {
    flex: 1;

    min-height: 270px;

    padding: 28px 22px 18px;
}

/* =========================================================
   ENLACE VER MÁS — TARJETAS DE INICIO
   ========================================================= */

.home-card-link {
    color: #f47c20;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 0.04em;

    transition: color 0.2s ease;
}


.home-card-link span {
    color: #f47c20;
}


.home-card:hover .home-card-link {
    color: #f47c20;
}

/* =========================================================
   IMAGEN INFERIOR DE LAS TARJETAS
   ========================================================= */

.home-card-image {
    position: relative;

    /*
       La zona de imagen ocupa todo el ancho disponible
       y mantiene proporción 1:1.
    */
    width: 100%;
    aspect-ratio: 1 / 1;

    height: auto;
    flex-shrink: 0;

    margin-top: 10px;

    overflow: hidden;
}

/* Imagen */
.home-card-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    /*
       La fotografía conserva una forma cuadrada.
       Solo el borde superior tiene el corte diagonal.
    */
    clip-path: polygon(
        0 24%,
        100% 0,
        100% 100%,
        0 100%
    );

    transition: transform 0.5s ease;
}

/* Capa sutil */
.home-card-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(10, 28, 55, 0.15),
        transparent 45%
    );

    pointer-events: none;
}

/* Hover */
.home-card:hover .home-card-image img {
    transform: scale(1.05);
}

/* =========================================================
   10. BARRA DE INDICADORES
   ========================================================= */

.stats-section {
    position: relative;

    width: 100%;

    padding: 42px 0;

    background: #0b1c38;
}


.stats-container {
    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    align-items: center;
}


.stat-item {
    display: flex;

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

    gap: 15px;

    min-height: 65px;

    padding: 0 20px;
}


.stat-icon {
    width: 44px;
    height: 44px;

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

    flex-shrink: 0;

    border: 1.5px solid #f47c20;

    background: transparent;

    box-sizing: border-box;
}

.stat-icon img {
    width: 30px;
    height: 30px;

    object-fit: contain;

    display: block;
}

.stat-content {
    display: flex;

    flex-direction: column;
}


.stat-content strong {
    color: #ffffff;

    font-size: 25px;
    line-height: 1.1;

    font-weight: 700;
}


.stat-content span {
    margin-top: 5px;

    color: rgba(255, 255, 255, 0.68);

    font-size: 9px;
    line-height: 1.35;

    font-weight: 500;

    text-transform: uppercase;

    letter-spacing: 0.05em;
}


.stat-divider {
    display: none;
}


/* =========================================================
   11. CTA PRINCIPAL
   ========================================================= */

.home-cta-section {
    width: 100%;

    padding: 78px 0;

    background: #E5E7EB;
}


.home-cta-container {
    display: flex;

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

    gap: 50px;

    padding: 42px 55px;

    background: #ffffff;

    border-left: 4px solid #f47c20;

    box-shadow:
        0 10px 30px rgba(15, 31, 58, 0.07);
}


.home-cta-content {
    display: flex;

    flex-direction: column;
}


.home-cta-label {
    color: #172033;

    font-size: 23px;
    line-height: 1.2;

    font-weight: 700;

    letter-spacing: -0.01em;
}


.home-cta-content p {
    margin-top: 8px;

    color: #667085;

    font-size: 13px;
}


.home-cta-button {
    flex-shrink: 0;
}


/* =========================================================
   12. FOOTER
   ========================================================= */

.site-footer {
    color: rgba(255, 255, 255, 0.75);

    background: #08172e;
}


.footer-container {
    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        0.8fr;

    gap: 65px;

    padding-top: 65px;
    padding-bottom: 55px;
}


/* =========================================================
   FOOTER — MARCA
   ========================================================= */

.footer-brand {
    max-width: 300px;
}


.footer-logo-link {
    display: inline-flex;
}


.footer-logo {
    width: 190px;
    height: auto;

    object-fit: contain;
}


.footer-description {
    max-width: 280px;

    margin-top: 20px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   FOOTER — COLUMNAS
   ========================================================= */

.footer-column h3 {
    margin-bottom: 20px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.07em;
}


.footer-column h3::after {
    content: "";

    display: block;

    width: 27px;
    height: 2px;

    margin-top: 8px;

    background: #f47c20;
}


/* =========================================================
   FOOTER — CONTACTO
   ========================================================= */

.footer-contact-list {
    display: flex;

    flex-direction: column;

    gap: 13px;
}


.footer-contact-list li {
    display: flex;

    align-items: center;

    gap: 10px;

    color: rgba(255, 255, 255, 0.58);

    font-size: 11px;
}


.footer-contact-icon {
    display: flex;

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

    width: 24px;
    height: 24px;

    color: #f47c20;

    font-size: 13px;
}


.footer-contact-list a {
    transition:
        color 0.2s ease;
}


.footer-contact-list a:hover {
    color: #f47c20;
}


/* =========================================================
   FOOTER — ENLACES
   ========================================================= */

.footer-links-list {
    display: flex;

    flex-direction: column;

    gap: 9px;
}


.footer-links-list a {
    color: rgba(255, 255, 255, 0.58);

    font-size: 13px;

    transition:
        color 0.2s ease,
        padding-left 0.2s ease;
}


.footer-links-list a:hover {
    color: #f47c20;

    padding-left: 5px;
}


/* =========================================================
   FOOTER — REDES SOCIALES
   ========================================================= */

.social-links {
    display: flex;

    align-items: center;

    gap: 8px;
}


.social-link {
    width: 34px;
    height: 34px;

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

    color: rgba(255, 255, 255, 0.75);

    border: 1px solid rgba(255, 255, 255, 0.15);

    font-size: 12px;
    font-weight: 700;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}


.social-link:hover {
    color: #ffffff;

    background: #f47c20;

    border-color: #f47c20;

    transform: translateY(-3px);
}


/* =========================================================
   13. FOOTER — COPYRIGHT
   ========================================================= */

.footer-bottom {
    border-top:
        1px solid rgba(255, 255, 255, 0.08);
}


.footer-bottom-container {
    min-height: 55px;

    display: flex;

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


.footer-bottom-container p {
    color: rgba(255, 255, 255, 0.4);

    font-size: 9px;

    text-align: center;

    letter-spacing: 0.03em;
}


/* =========================================================
   14. TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .home-cards-container {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }




    .header-container,
    .hero-container,
    .home-cards-container,
    .stats-container,
    .home-cta-container,
    .footer-container,
    .footer-bottom-container {
        width: min(100% - 50px, 1000px);
    }


    .nav-list {
        gap: 20px;
    }


    .nav-item > a {
        font-size: 11px;
    }


    .header-quote-button,
    .header-cta {
        padding: 0 15px;

        font-size: 9px;
    }


    .hero-container {
        grid-template-columns:
            minmax(0, 0.9fr)
            minmax(0, 1.1fr);

        gap: 40px;
    }


    .hero-title {
        font-size: 48px;
    }


    .hero-visual {
        height: 390px;
    }


    .home-cards-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .home-card {
        height: 570px;
    }


    .stats-container {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        row-gap: 25px;
    }


    .footer-container {
        gap: 40px;
    }

}


/* =========================================================
   15. TABLET PEQUEÑA
   ========================================================= */

@media (max-width: 900px) {

    .home-cards-container {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }




    .header-container {
        min-height: 78px;
    }


    .main-navigation {
        display: none;
    }


    .header-quote-button,
    .header-cta {
        margin-left: auto;
    }


    .mobile-menu-button {
        display: block;
    }


    .hero-section {
        min-height: auto;
    }


    .hero-container {
        min-height: auto;

        grid-template-columns: 1fr;

        padding-top: 70px;
        padding-bottom: 70px;
    }


    .hero-content {
        max-width: 700px;
    }


    .hero-visual {
        height: 400px;
    }


    .home-cards-section {
        margin-top: 0;

        padding: 45px 0;
    }


    .home-cards-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .stats-container {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .home-cta-container {
        padding: 35px 40px;
    }


    .footer-container {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   16. PANTALLAS PEQUEÑAS
   ========================================================= */

@media (max-width: 700px) {

    .home-cards-container {
        grid-template-columns: 1fr;
        gap: 14px;
    }




    /* ---------------------------------------------------------
       CONTENEDORES
    --------------------------------------------------------- */

    .header-container,
    .hero-container,
    .home-cards-container,
    .stats-container,
    .home-cta-container,
    .footer-container,
    .footer-bottom-container {
        width: calc(100% - 36px);
    }


    /* ---------------------------------------------------------
       HEADER
    --------------------------------------------------------- */

    .header-container {
        min-height: 72px;

        gap: 12px;
    }


    .brand-logo {
        width: 145px;
    }


    .header-quote-button,
    .header-cta {
        min-height: 38px;

        padding: 0 13px;

        font-size: 8px;
    }


    .mobile-menu-button {
        width: 38px;
        height: 38px;
    }


    /* ---------------------------------------------------------
       HERO
    --------------------------------------------------------- */

    .hero-container {
        width: calc(100% - 36px);

        padding-top: 55px;
        padding-bottom: 55px;

        gap: 38px;
    }


    .hero-eyebrow {
        margin-bottom: 15px;

        font-size: 9px;

        letter-spacing: 0.12em;
    }


    .hero-title {
        font-size: clamp(36px, 10vw, 48px);

        line-height: 1.08;
    }


    .hero-description {
        margin-top: 20px;

        font-size: 13px;

        line-height: 1.75;
    }


    .hero-actions {
        flex-direction: column;

        align-items: stretch;

        margin-top: 27px;

        gap: 10px;
    }


    .button {
        width: 100%;

        min-height: 46px;
    }


    .hero-visual {
        height: 300px;
    }


    /* ---------------------------------------------------------
       TARJETAS
    --------------------------------------------------------- */

    .home-cards-section {
        padding-top: 30px;
        padding-bottom: 30px;
    }


    .home-cards-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }


    .home-card {
        height: 540px;
    }


    .home-card-content {
        min-height: 0;

        padding: 23px 22px 20px;
    }


    .home-card h2 {
        font-size: 20px;
    }


    .home-card p {
        max-width: 480px;

        font-size: 11px;
    }


    .home-card-image {
        aspect-ratio: 1 / 1;
        height: auto;
    }


    /* ---------------------------------------------------------
       INDICADORES
    --------------------------------------------------------- */

    .stats-section {
        padding: 38px 0;
    }


    .stats-container {
        grid-template-columns: 1fr;

        gap: 0;
    }


    .stat-item {
        justify-content: flex-start;

        min-height: 70px;

        padding: 8px 10px;
    }


    .stat-divider {
        display: block;

        width: 100%;
        height: 1px;

        background:
            rgba(255, 255, 255, 0.09);
    }


    .stat-content strong {
        font-size: 23px;
    }


    .stat-content span {
        font-size: 8px;
    }


    /* ---------------------------------------------------------
       CTA
    --------------------------------------------------------- */

    .home-cta-section {
        padding: 45px 0;
    }


    .home-cta-container {
        flex-direction: column;

        align-items: flex-start;

        gap: 25px;

        padding: 32px 25px;
    }


    .home-cta-label {
        font-size: 20px;
    }


    .home-cta-content p {
        font-size: 12px;
    }


    .home-cta-button {
        width: auto;

        min-width: 160px;
    }


    /* ---------------------------------------------------------
       FOOTER
    --------------------------------------------------------- */

    .footer-container {
        grid-template-columns: 1fr;

        gap: 40px;

        padding-top: 50px;
        padding-bottom: 45px;
    }


    .footer-brand {
        max-width: 100%;
    }


    .footer-description {
        max-width: 420px;
    }


    .footer-bottom-container {
        min-height: 60px;
    }


}


/* =========================================================
   17. CELULARES PEQUEÑOS
   ========================================================= */

@media (max-width: 480px) {

    .home-cards-container {
        grid-template-columns: 1fr;
    }




    .header-container {
        min-height: 68px;
    }


    .brand-logo {
        width: 125px;
    }


    .header-quote-button,
    .header-cta {
        display: none;
    }


    .mobile-menu-button {
        margin-left: auto;
    }


    .hero-container {
        width: calc(100% - 30px);

        padding-top: 45px;
        padding-bottom: 45px;
    }


    .hero-title {
        font-size: 35px;
    }


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


    .hero-visual {
        height: 250px;
    }


    .home-cards-container {
        width: calc(100% - 30px);
    }


    .home-card {
        height: 500px;
    }


    .home-card-content {
        min-height: 0;
    }


    .home-card-image {
        aspect-ratio: 1 / 1;
        height: auto;
    }


    .stats-container {
        width: calc(100% - 30px);
    }


    .stat-item {
        padding-left: 0;
        padding-right: 0;
    }


    .home-cta-container {
        width: calc(100% - 30px);
    }


    .home-cta-label {
        font-size: 18px;
    }


    .footer-container {
        width: calc(100% - 30px);
    }


    .footer-logo {
        width: 150px;
    }

}


/* =========================================================
   18. MENÚ MÓVIL
   ========================================================= */

/*
   El funcionamiento del botón se activará desde main.js.
   Por ahora dejamos preparada la apariencia del menú.
*/


.mobile-navigation {
    display: none;

    position: absolute;

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

    z-index: 9999;

    padding: 12px 18px 20px;

    background: #ffffff;

    border-top:
        1px solid rgba(15, 31, 58, 0.08);

    box-shadow:
        0 15px 30px rgba(15, 31, 58, 0.12);
}


.mobile-navigation.is-open {
    display: block;
}


.mobile-navigation-list {
    display: flex;

    flex-direction: column;
}


.mobile-navigation-list > li {
    border-bottom:
        1px solid rgba(15, 31, 58, 0.07);
}


.mobile-navigation-list > li:last-child {
    border-bottom: 0;
}


.mobile-navigation-list a {
    display: flex;

    align-items: center;

    min-height: 48px;

    color: #172033;

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


.mobile-navigation-list a:hover {
    color: #f47c20;
}


/* =========================================================
   19. ESTADOS DE ENFOQUE
   ========================================================= */

a:focus-visible,
button:focus-visible {
    outline: 2px solid #f47c20;

    outline-offset: 4px;
}


/* =========================================================
   20. REDUCCIÓN DE MOVIMIENTO
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }


    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;
    }

}


/* =========================================================
   21. PREVENCIÓN DE DESBORDAMIENTO
   ========================================================= */

.hero-content,
.hero-visual,
.home-card,
.home-card-content,
.footer-brand,
.footer-column {
    min-width: 0;
}


.home-card p,
.hero-description,
.footer-description {
    overflow-wrap: break-word;
}


/* =========================================================
   22. AJUSTE DE IMÁGENES
   ========================================================= */

.hero-image,
.home-card-image img,
.brand-logo,
.footer-logo {
    user-select: none;

    -webkit-user-drag: none;
}


/* =========================================================
   FIN DE STYLE.CSS
   ========================================================= */
/* =========================================================
   CADIK
   NOSOTROS
   STYLE.CSS — PARTE 1
   ========================================================= */


/* =========================================================
   23. CONTENEDOR GENERAL DE PÁGINAS INTERNAS
   ========================================================= */

.section-container {
    width: min(1120px, calc(100% - 80px));
    margin: 0 auto;
}


/* =========================================================
   24. HERO DE PÁGINAS INTERNAS
   ========================================================= */

.page-hero {
    position: relative;

    min-height: 430px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        #0b1c38;
}


/* Imagen de fondo de Nosotros */

.nosotros-hero {
    background-image:
        url("../images/nosotros/nosotros-hero.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.page-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8, 23, 46, 0.92) 0%,
            rgba(8, 23, 46, 0.76) 42%,
            rgba(8, 23, 46, 0.30) 100%
        );

    z-index: 1;
}


.page-hero-container {
    position: relative;

    z-index: 2;

    width: min(1120px, calc(100% - 80px));

    margin: 0 auto;

    padding-top: 55px;
    padding-bottom: 55px;
}


.page-hero-content {
    max-width: 620px;
}


/* =========================================================
   BREADCRUMB
   ========================================================= */

.breadcrumb {
    display: flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 20px;

    color:
        rgba(255, 255, 255, 0.58);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}


.breadcrumb a {
    color: #f47c20;

    transition:
        color 0.2s ease;
}


.breadcrumb a:hover {
    color: #ffffff;
}


.breadcrumb span:last-child {
    color:
        rgba(255, 255, 255, 0.72);
}


/* =========================================================
   TÍTULO HERO
   ========================================================= */

.page-hero h1 {
    color: #ffffff;

    font-size:
        clamp(42px, 5vw, 64px);

    line-height: 1;

    font-weight: 700;

    letter-spacing: -0.035em;
}


.hero-line {
    width: 48px;
    height: 3px;

    margin-top: 20px;
    margin-bottom: 20px;

    background: #f47c20;
}


.page-hero-content > p {
    max-width: 590px;

    color:
        rgba(255, 255, 255, 0.78);

    font-size: 13px;

    line-height: 1.85;
}


/* =========================================================
   25. ENCABEZADOS DE SECCIÓN
   ========================================================= */

.section-heading {
    display: flex;

    align-items: flex-start;

    gap: 18px;
}


.section-number {
    display: flex;

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

    width: 38px;
    height: 38px;

    flex-shrink: 0;

    color: #f47c20;

    background:
        rgba(244, 124, 32, 0.09);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.05em;
}


.section-label {
    display: block;

    margin-bottom: 7px;

    color: #f47c20;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.14em;

    text-transform: uppercase;
}


.section-heading h2 {
    color: #172033;

    font-size:
        clamp(28px, 3vw, 40px);

    line-height: 1.12;

    font-weight: 700;

    letter-spacing: -0.025em;
}


.section-description {
    max-width: 760px;

    margin-top: 25px;

    color: #667085;

    font-size: 13px;

    line-height: 1.85;
}


/* =========================================================
   26. QUIÉNES SOMOS
   ========================================================= */

.about-section {
    padding: 90px 0 75px;

    background-color: #E5E7EB;
}


.about-intro {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 60px;

    margin-top: 42px;

    padding-left: 56px;
}


.about-intro p {
    color: #475467;

    font-size: 14px;

    line-height: 1.9;
}


.about-intro p:first-child {
    color: #172033;

    font-size: 18px;

    line-height: 1.65;

    font-weight: 600;
}


/* =========================================================
   27. MISIÓN Y VISIÓN
   ========================================================= */

.mission-vision-section {
    padding: 75px 0 90px;

    background: #E5E7EB;
}


.mission-vision-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 25px;
}


.mission-card,
.vision-card {
    position: relative;

    display: flex;

    gap: 25px;

    min-height: 260px;

    padding: 38px;

    overflow: hidden;

    background: #ffffff;

    box-shadow:
        0 12px 30px
        rgba(15, 31, 58, 0.07);
}


.mission-card {
    border-top: 3px solid #f47c20;
}


.vision-card {
    border-top: 3px solid #0b1c38;
}


.card-icon {
    width: 48px;
    height: 48px;

    display: flex;

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

    flex-shrink: 0;

    color: #f47c20;

    background: #E5E7EB;

    font-size: 21px;

    font-weight: 600;
}


.card-content {
    flex: 1;
}


.card-label {
    display: block;

    margin-bottom: 8px;

    color: #f47c20;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.14em;

    text-transform: uppercase;
}


.card-content h3 {
    margin-bottom: 13px;

    color: #172033;

    font-size: 22px;

    line-height: 1.2;

    font-weight: 700;
}


.card-content p {
    color: #667085;

    font-size: 12px;

    line-height: 1.8;
}


/* =========================================================
   CADIK
   NOSOTROS
   STYLE.CSS — PARTE 2
   ========================================================= */


/* =========================================================
   28. LAS SOLUCIONES QUE OFRECEMOS
   ========================================================= */

.solutions-section {
    padding: 90px 0;

    background-color: #E5E7EB;
}


.solutions-flow {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;

    margin-top: 42px;
}


.solution-category {
    position: relative;

    min-height: 310px;

    padding: 30px;

    background: #f7f8fa;

    border-top: 3px solid #f47c20;

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


.solution-category:hover {
    transform: translateY(-6px);

    background: #ffffff;

    box-shadow:
        0 18px 35px
        rgba(15, 31, 58, 0.10);
}


/* =========================================================
   ENCABEZADO DE CATEGORÍA
   ========================================================= */

.solution-header {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 25px;
}


.solution-icon {
    width: 48px;
    height: 48px;

    display: flex;

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

    flex-shrink: 0;

    color: #ffffff;

    background: #0b1c38;

    font-size: 19px;

    font-weight: 600;
}


.solution-category h3 {
    color: #172033;

    font-size: 16px;

    line-height: 1.25;

    font-weight: 700;

    letter-spacing: 0.02em;
}


/* =========================================================
   LISTA DE SOLUCIONES
   ========================================================= */

.solution-category ul {
    display: flex;

    flex-direction: column;

    gap: 11px;
}


.solution-category li {
    position: relative;

    padding-left: 17px;

    color: #667085;

    font-size: 13px;

    line-height: 1.55;
}


.solution-category li::before {
    content: "";

    position: absolute;

    left: 0;
    top: 8px;

    width: 5px;
    height: 5px;

    background: #f47c20;

    border-radius: 50%;
}


/* =========================================================
   29. ¿POR QUÉ ELEGIRNOS?
   ========================================================= */

.why-us-section {
    padding: 90px 0;

    background: #E5E7EB;
}


.why-us-heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(280px, 0.75fr);

    align-items: end;

    gap: 60px;
}


.why-us-heading > p {
    max-width: 430px;

    margin-left: auto;

    color: #667085;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   GRID DE CARACTERÍSTICAS
   ========================================================= */

.why-us-grid {
    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap: 12px;

    margin-top: 45px;
}


.why-card {
    min-height: 265px;

    padding: 27px 20px;

    background: #ffffff;

    border-bottom: 2px solid transparent;

    box-shadow:
        0 8px 20px
        rgba(15, 31, 58, 0.05);

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


.why-card:hover {
    transform: translateY(-7px);

    border-bottom-color: #f47c20;

    box-shadow:
        0 16px 30px
        rgba(15, 31, 58, 0.10);
}


/* =========================================================
   ICONOS
   ========================================================= */

.why-icon {
    width: 45px;
    height: 45px;

    display: flex;

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

    margin-bottom: 22px;

    color: #f47c20;

    background: #E5E7EB;

    font-size: 19px;
}


/* =========================================================
   TEXTO
   ========================================================= */

.why-card h3 {
    min-height: 38px;

    margin-bottom: 13px;

    color: #172033;

    font-size: 11px;

    line-height: 1.45;

    font-weight: 700;

    letter-spacing: 0.02em;
}


.why-card p {
    color: #667085;

    font-size: 10px;

    line-height: 1.75;
}


/* =========================================================
   30. CTA FINAL DE NOSOTROS
   ========================================================= */

.about-cta-section {
    padding: 75px 0;

    background: #0b1c38;
}


.about-cta-content {
    display: flex;

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

    gap: 50px;

    padding: 45px 55px;

    border-left: 4px solid #f47c20;

    background:
        rgba(255, 255, 255, 0.04);
}


.about-cta-label {
    display: block;

    margin-bottom: 10px;

    color: #f47c20;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.15em;

    text-transform: uppercase;
}


.about-cta-content h2 {
    color: #ffffff;

    font-size:
        clamp(25px, 3vw, 37px);

    line-height: 1.15;

    font-weight: 700;
}


.about-cta-content p {
    max-width: 600px;

    margin-top: 10px;

    color:
        rgba(255, 255, 255, 0.62);

    font-size: 12px;

    line-height: 1.75;
}


.about-cta-content .button {
    flex-shrink: 0;
}


/* =========================================================
   31. RESPONSIVE — NOSOTROS
   ========================================================= */

@media (max-width: 1000px) {


    .solutions-flow {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .why-us-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }


    .why-us-heading {
        grid-template-columns: 1fr;

        gap: 25px;
    }


    .why-us-heading > p {
        margin-left: 56px;
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 800px) {


    .section-container,
    .page-hero-container {
        width: calc(100% - 50px);
    }


    .page-hero {
        min-height: 390px;
    }


    .page-hero-content {
        max-width: 560px;
    }


    .about-section,
    .solutions-section,
    .why-us-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }


    .about-intro {
        grid-template-columns: 1fr;

        gap: 20px;

        padding-left: 56px;
    }


    .mission-vision-grid {
        grid-template-columns: 1fr;
    }


    .solutions-flow {
        grid-template-columns: 1fr;
    }


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


    .why-us-heading > p {
        margin-left: 56px;
    }


    .about-cta-content {
        flex-direction: column;

        align-items: flex-start;

        padding: 38px 40px;
    }

}


/* =========================================================
   FIN — NOSOTROS PARTE 2
   ========================================================= */
/* =========================================================
   CADIK
   SERVICIOS
   STYLE.CSS — PARTE 1
   ========================================================= */


/* =========================================================
   32. HERO DE SERVICIOS
   ========================================================= */

.services-hero {
    background-image:
        url("../images/servicios/servicios-hero.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* =========================================================
   33. CONTENEDOR GENERAL
   ========================================================= */

.services-intro,
.services-main,
.services-value,
.services-cta {
    position: relative;
}


.services-intro .container,
.services-main .container,
.services-value .container,
.services-cta .container {
    width: min(1120px, calc(100% - 80px));
    margin: 0 auto;
}


/* =========================================================
   34. INTRODUCCIÓN DE SERVICIOS
   ========================================================= */

.services-intro {
    padding: 90px 0 80px;

    background-color: #E5E7EB;
}


.services-intro-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 70px;

    margin-top: 40px;

    padding-left: 56px;
}


.services-intro-main {
    max-width: 520px;
}


.services-intro-lead {
    color: #172033;

    font-size: 20px;

    line-height: 1.65;

    font-weight: 600;

    letter-spacing: -0.015em;
}


.services-intro-text {
    max-width: 500px;

    padding-top: 3px;
}


.services-intro-text p {
    color: #667085;

    font-size: 13px;

    line-height: 1.9;
}


/* =========================================================
   35. SECCIÓN SERVICIOS PRINCIPALES
   ========================================================= */

.services-main {
    padding: 90px 0;

    background: #E5E7EB;
}


/* =========================================================
   DESCRIPCIÓN
   ========================================================= */

.services-main .section-description {
    max-width: 720px;

    margin-top: 24px;
}


/* =========================================================
   36. GRID DE SERVICIOS
   ========================================================= */

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;

    margin-top: 45px;
}


/* =========================================================
   TARJETA
   ========================================================= */

.service-card {
    position: relative;

    min-height: 390px;

    padding: 32px 30px 30px;

    overflow: hidden;

    background: #ffffff;

    border-top: 3px solid #f47c20;

    box-shadow:
        0 8px 24px
        rgba(15, 31, 58, 0.055);

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


.service-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 18px 35px
        rgba(15, 31, 58, 0.11);
}


/* =========================================================
   NÚMERO
   ========================================================= */

.service-card-number {
    position: absolute;

    top: 18px;
    right: 22px;

    color:
        rgba(11, 28, 56, 0.075);

    font-size: 42px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: -0.04em;
}


/* =========================================================
   ICONO
   ========================================================= */

.service-card-icon {
    width: 50px;
    height: 50px;

    display: flex;

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

    margin-bottom: 24px;

    color: #ffffff;

    background: #0b1c38;

    font-size: 20px;

    font-weight: 600;
}


/* =========================================================
   TÍTULO
   ========================================================= */

.service-card h3 {
    position: relative;

    margin-bottom: 14px;

    color: #172033;

    font-size: 15px;

    line-height: 1.35;

    font-weight: 700;

    letter-spacing: 0.015em;
}


/* =========================================================
   DESCRIPCIÓN
   ========================================================= */

.service-card > p {
    margin-bottom: 20px;

    color: #667085;

    font-size: 11px;

    line-height: 1.75;
}


/* =========================================================
   LISTA
   ========================================================= */

.service-card ul {
    display: flex;

    flex-direction: column;

    gap: 9px;
}


.service-card li {
    position: relative;

    padding-left: 16px;

    color: #475467;

    font-size: 10px;

    line-height: 1.5;
}


.service-card li::before {
    content: "";

    position: absolute;

    left: 0;
    top: 7px;

    width: 5px;
    height: 5px;

    background: #f47c20;

    border-radius: 50%;
}


/* =========================================================
   37. NUESTRO VALOR
   ========================================================= */

.services-value {
    padding: 95px 0;

    background-color: #E5E7EB;
}


.services-value-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    gap: 90px;

    align-items: start;
}


.services-value-content {
    max-width: 500px;
}


.services-value-content h2 {
    margin-top: 10px;

    color: #172033;

    font-size:
        clamp(28px, 3vw, 40px);

    line-height: 1.15;

    font-weight: 700;

    letter-spacing: -0.025em;
}


.services-value-content p {
    margin-top: 22px;

    color: #667085;

    font-size: 13px;

    line-height: 1.85;
}


.services-value-content p + p {
    margin-top: 12px;
}


/* =========================================================
   LISTA DE VALORES
   ========================================================= */

.services-value-list {
    border-top: 1px solid #e4e7ec;
}


.value-item {
    display: grid;

    grid-template-columns:
        45px 1fr;

    gap: 22px;

    padding: 22px 0;

    border-bottom: 1px solid #e4e7ec;
}


.value-number {
    color: #f47c20;

    font-size: 11px;

    line-height: 1.5;

    font-weight: 700;
}


.value-item h3 {
    margin-bottom: 5px;

    color: #172033;

    font-size: 12px;

    line-height: 1.4;

    font-weight: 700;

    letter-spacing: 0.04em;
}


.value-item p {
    color: #667085;

    font-size: 10px;

    line-height: 1.7;
}


/* =========================================================
   FIN — SERVICIOS PARTE 1
   ========================================================= */
/* =========================================================
   CADIK
   SERVICIOS
   STYLE.CSS — PARTE 2
   ========================================================= */


/* =========================================================
   38. CTA FINAL DE SERVICIOS
   ========================================================= */

.services-cta {
    padding: 75px 0;

    background: #0b1c38;
}


.services-cta-content {
    display: flex;

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

    gap: 50px;

    padding: 45px 55px;

    border-left: 4px solid #f47c20;

    background:
        rgba(255, 255, 255, 0.04);
}


.services-cta-text {
    max-width: 700px;
}


.services-cta-text h2 {
    margin-top: 9px;

    color: #ffffff;

    font-size:
        clamp(27px, 3vw, 38px);

    line-height: 1.15;

    font-weight: 700;

    letter-spacing: -0.025em;
}


.services-cta-text p {
    max-width: 620px;

    margin-top: 13px;

    color:
        rgba(255, 255, 255, 0.64);

    font-size: 12px;

    line-height: 1.8;
}


.services-cta-content .button {
    flex-shrink: 0;
}


/* =========================================================
   39. RESPONSIVE — SERVICIOS
   ========================================================= */

@media (max-width: 1000px) {

    .services-intro .container,
    .services-main .container,
    .services-value .container,
    .services-cta .container {
        width: calc(100% - 60px);
    }


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


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

        gap: 50px;
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 800px) {

    .services-intro .container,
    .services-main .container,
    .services-value .container,
    .services-cta .container {
        width: calc(100% - 50px);
    }


    .services-intro,
    .services-main,
    .services-value {
        padding-top: 70px;
        padding-bottom: 70px;
    }


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

        gap: 20px;

        padding-left: 56px;
    }


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


    .service-card {
        min-height: auto;
    }


    .services-value-grid {
        gap: 40px;
    }


    .services-cta-content {
        flex-direction: column;

        align-items: flex-start;

        padding: 38px 40px;
    }

}


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

@media (max-width: 520px) {

    .services-intro .container,
    .services-main .container,
    .services-value .container,
    .services-cta .container {
        width: calc(100% - 36px);
    }


    .services-intro-grid {
        padding-left: 0;
    }


    .services-intro-lead {
        font-size: 18px;
    }


    .services-value-content h2 {
        font-size: 29px;
    }


    .services-cta-content {
        padding: 32px 25px;
    }


    .services-cta-text h2 {
        font-size: 27px;
    }

}


/* =========================================================
   FIN — SERVICIOS PARTE 2
   ========================================================= */
/* =========================================================
   CADIK
   PROYECTOS
   STYLE.CSS — PARTE 1
   ========================================================= */


/* =========================================================
   40. HERO DE PROYECTOS
   ========================================================= */

.page-hero-proyectos {
    background-image:
        url("../images/proyectos/puentes-grua/puentes-grua-principal.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* =========================================================
   41. CONTENEDOR GENERAL
   ========================================================= */

.projects-intro .container,
.featured-projects .container,
.projects-cta .container {
    width: min(1120px, calc(100% - 80px));

    margin: 0 auto;
}


/* =========================================================
   42. INTRODUCCIÓN
   ========================================================= */

.projects-intro {
    padding: 90px 0 80px;

    background-color: #E5E7EB;
}


.projects-intro-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 70px;

    margin-top: 40px;

    padding-left: 56px;
}


.projects-intro-main {
    max-width: 520px;
}


.projects-intro-highlight {
    color: #172033;

    font-size: 20px;

    line-height: 1.65;

    font-weight: 600;

    letter-spacing: -0.015em;
}


.projects-intro-text {
    max-width: 500px;
}


.projects-intro-text p {
    color: #667085;

    font-size: 13px;

    line-height: 1.9;
}


/* =========================================================
   43. PROYECTOS DESTACADOS
   ========================================================= */

.featured-projects {
    padding: 90px 0;

    background: #E5E7EB;
}


/* =========================================================
   ENCABEZADO CENTRADO
   ========================================================= */

.section-heading-centered {
    justify-content: center;

    text-align: center;
}


.section-heading-centered .section-number {
    margin-top: 3px;
}


.section-heading-centered > div:last-child {
    text-align: left;
}


/* =========================================================
   44. GRID DE PROYECTOS
   ========================================================= */

.projects-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;

    margin-top: 45px;
}


/* =========================================================
   TARJETA DE PROYECTO
   ========================================================= */

.project-card {
    overflow: hidden;

    background: #ffffff;

    box-shadow:
        0 8px 24px
        rgba(15, 31, 58, 0.06);

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


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

    box-shadow:
        0 18px 35px
        rgba(15, 31, 58, 0.12);
}


/* =========================================================
   IMAGEN
   ========================================================= */

.project-card-image {
    position: relative;

    height: 245px;

    overflow: hidden;

    background: #dfe3e8;
}


.project-card-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}


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


/* =========================================================
   OVERLAY DE IMAGEN
   ========================================================= */

.project-card-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: flex-start;
    justify-content: flex-end;

    padding: 18px;

    background:
        linear-gradient(
            180deg,
            rgba(11, 28, 56, 0.45) 0%,
            rgba(11, 28, 56, 0) 45%
        );
}


.project-card-overlay span {
    padding: 7px 10px;

    color: #ffffff;

    background: #f47c20;

    font-size: 8px;

    line-height: 1;

    font-weight: 700;

    letter-spacing: 0.1em;
}


/* =========================================================
   CONTENIDO
   ========================================================= */

.project-card-content {
    padding: 28px 28px 30px;
}


.project-category {
    display: block;

    margin-bottom: 8px;

    color: #f47c20;

    font-size: 8px;

    line-height: 1.4;

    font-weight: 700;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}


.project-card-content h3 {
    margin-bottom: 12px;

    color: #172033;

    font-size: 21px;

    line-height: 1.25;

    font-weight: 700;
}


.project-card-content p {
    min-height: 105px;

    margin-bottom: 22px;

    color: #667085;

    font-size: 11px;

    line-height: 1.8;
}


/* =========================================================
   ENLACE VER PROYECTO
   ========================================================= */

.project-link {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #172033;

    font-size: 9px;

    line-height: 1;

    font-weight: 700;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    transition:
        color 0.2s ease,
        gap 0.2s ease;
}


.project-link span {
    color: #f47c20;

    font-size: 16px;

    line-height: 0;
}


.project-link:hover {
    color: #f47c20;

    gap: 14px;
}


/* =========================================================
   FIN — PROYECTOS PARTE 1
   ========================================================= */
 /* =========================================================
    CADIK
    PROYECTOS
    STYLE.CSS — PARTE 2
    ========================================================= */


/* =========================================================
   45. CTA FINAL DE PROYECTOS
   ========================================================= */

.projects-cta {
    padding: 75px 0;

    background: #0b1c38;
}


.projects-cta .container {
    width: min(1120px, calc(100% - 80px));

    margin: 0 auto;
}


.projects-cta-content {
    display: flex;

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

    gap: 50px;

    padding: 45px 55px;

    border-left: 4px solid #f47c20;

    background:
        rgba(255, 255, 255, 0.04);
}


.projects-cta-text {
    max-width: 680px;
}


.projects-cta-text .section-label {
    color: #f47c20;
}


.projects-cta-text h2 {
    margin-top: 9px;

    color: #ffffff;

    font-size:
        clamp(27px, 3vw, 38px);

    line-height: 1.15;

    font-weight: 700;

    letter-spacing: -0.025em;
}


.projects-cta-text p {
    max-width: 610px;

    margin-top: 13px;

    color:
        rgba(255, 255, 255, 0.64);

    font-size: 12px;

    line-height: 1.8;
}


.projects-cta-content .button {
    flex-shrink: 0;
}


/* =========================================================
   46. RESPONSIVE — PROYECTOS
   ========================================================= */

@media (max-width: 1000px) {

    .projects-intro .container,
    .featured-projects .container,
    .projects-cta .container {
        width: calc(100% - 60px);
    }


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

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 800px) {

    .projects-intro .container,
    .featured-projects .container,
    .projects-cta .container {
        width: calc(100% - 50px);
    }


    .projects-intro,
    .featured-projects {
        padding-top: 70px;
        padding-bottom: 70px;
    }


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

        gap: 20px;

        padding-left: 56px;
    }


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


    .project-card-image {
        height: 280px;
    }


    .projects-cta-content {
        flex-direction: column;

        align-items: flex-start;

        padding: 38px 40px;
    }

}


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

@media (max-width: 520px) {

    .projects-intro .container,
    .featured-projects .container,
    .projects-cta .container {
        width: calc(100% - 36px);
    }


    .projects-intro-grid {
        padding-left: 0;
    }


    .projects-intro-highlight {
        font-size: 18px;
    }


    .project-card-image {
        height: 220px;
    }


    .project-card-content {
        padding: 25px 22px 27px;
    }


    .project-card-content p {
        min-height: auto;
    }


    .projects-cta-content {
        padding: 32px 25px;
    }


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

}


/* =========================================================
   FIN — PROYECTOS PARTE 2
   ========================================================= */
/* =========================================================
   PROYECTOS — BOTONES DESHABILITADOS TEMPORALMENTE
   ========================================================= */

.project-card .project-link {
    display: none;
}

/* =========================================================
   AJUSTE FINAL — FOOTER UNIFICADO Y LEGIBLE
   ========================================================= */

.site-footer .footer-logo {
    width: 190px;
}

.site-footer .footer-description {
    font-size: 13px;
}

.site-footer .footer-column h3 {
    font-size: 14px;
}

.site-footer .footer-links-list a,
.site-footer .footer-contact-list li,
.site-footer .footer-contact-list a {
    font-size: 13px;
}

@media (max-width: 800px) {
    .site-footer .footer-logo {
        width: 180px;
    }

    .site-footer .footer-description {
        font-size: 13px;
    }

    .site-footer .footer-column h3 {
        font-size: 14px;
    }

    .site-footer .footer-links-list a,
    .site-footer .footer-contact-list li,
    .site-footer .footer-contact-list a {
        font-size: 13px;
    }
}
