/* =========================================================
   CADIK
   PROYECTO — PUENTES GRÚA
   PUENTES-GRUA.CSS — PARTE 1
   ========================================================= */


/* =========================================================
   01. BREADCRUMB
   ========================================================= */

.page-breadcrumb {
    padding: 14px 0;

    background: #E5E7EB;

    border-bottom: 1px solid #e4e7ec;
}


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

    margin: 0 auto;

    display: flex;

    align-items: center;

    gap: 10px;
}


.page-breadcrumb a,
.page-breadcrumb strong,
.page-breadcrumb span {
    font-size: 8px;

    line-height: 1.4;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}


.page-breadcrumb a {
    color: #667085;

    transition: color 0.2s ease;
}


.page-breadcrumb a:hover {
    color: #f47c20;
}


.page-breadcrumb span {
    color: #98a2b3;
}


.page-breadcrumb strong {
    color: #172033;

    font-weight: 700;
}


/* =========================================================
   02. HERO DEL PROYECTO
   ========================================================= */

.project-hero {
    padding: 70px 0;

    background: #0b1c38;

    overflow: hidden;
}


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

    margin: 0 auto;

    display: grid;

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

    gap: 65px;

    align-items: center;
}


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


.project-hero-content .project-category {
    display: block;

    margin-bottom: 15px;

    color: #f47c20;

    font-size: 9px;

    line-height: 1.4;

    font-weight: 700;

    letter-spacing: 0.14em;

    text-transform: uppercase;
}


.project-hero-content h1 {
    color: #ffffff;

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

    line-height: 1;

    font-weight: 700;

    letter-spacing: -0.04em;
}


.project-title-line {
    width: 48px;

    height: 3px;

    margin: 22px 0;

    background: #f47c20;
}


.project-hero-content > p {
    max-width: 500px;

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

    font-size: 13px;

    line-height: 1.85;
}


/* =========================================================
   BOTÓN CONOCER PROYECTO
   ========================================================= */

.project-scroll-button {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 28px;

    padding: 13px 18px;

    color: #ffffff;

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

    font-size: 8px;

    line-height: 1;

    font-weight: 700;

    letter-spacing: 0.1em;

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


.project-scroll-button span {
    color: #f47c20;

    font-size: 15px;
}


.project-scroll-button:hover {
    background: rgba(255, 255, 255, 0.08);

    border-color: #f47c20;
}


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

.project-hero-image {
    position: relative;

    min-height: 420px;

    overflow: hidden;

    background: #172033;

    box-shadow:
        0 20px 50px
        rgba(0, 0, 0, 0.25);
}


.project-hero-image::after {
    content: "";

    position: absolute;

    inset: 0;

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

    pointer-events: none;
}


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

    display: block;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}


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


/* =========================================================
   03. INTRODUCCIÓN DEL PROYECTO
   ========================================================= */

.project-introduction {
    padding: 90px 0 85px;

    background: #ffffff;
}


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

    margin: 0 auto;
}


.project-introduction-grid {
    display: grid;

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

    gap: 70px;

    margin-top: 42px;

    padding-left: 56px;
}


.project-introduction-main {
    max-width: 520px;
}


.project-lead {
    color: #172033;

    font-size: 20px;

    line-height: 1.65;

    font-weight: 600;

    letter-spacing: -0.015em;
}


.project-introduction-text {
    max-width: 500px;
}


.project-introduction-text p {
    color: #667085;

    font-size: 13px;

    line-height: 1.9;
}


.project-introduction-text p + p {
    margin-top: 16px;
}


/* =========================================================
   04. CARACTERÍSTICAS
   ========================================================= */

.project-features {
    padding: 90px 0;

    background: #E5E7EB;
}


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

    margin: 0 auto;
}


.project-features-grid {
    display: grid;

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

    gap: 18px;

    margin-top: 45px;
}


/* =========================================================
   TARJETAS
   ========================================================= */

.project-feature-card {
    display: grid;

    grid-template-columns:
        48px 1fr;

    gap: 20px;

    padding: 30px;

    background: #ffffff;

    border-left: 3px solid transparent;

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

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


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

    border-left-color: #f47c20;

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


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

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

    display: flex;

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

    color: #f47c20;

    background: #E5E7EB;

    font-size: 10px;

    line-height: 1;

    font-weight: 700;

    letter-spacing: 0.04em;
}


.project-feature-card h3 {
    margin-bottom: 10px;

    color: #172033;

    font-size: 14px;

    line-height: 1.4;

    font-weight: 700;
}


.project-feature-card p {
    color: #667085;

    font-size: 11px;

    line-height: 1.8;
}


/* =========================================================
   FIN — PUENTES GRÚA PARTE 1
   ========================================================= */
/* =========================================================
   PUENTES GRÚA — PARTE 2
   CONTENIDO PRINCIPAL
   ========================================================= */


/* =========================================================
   04. INFORMACIÓN DEL PROYECTO
   ========================================================= */

.project-info {
    padding: 100px 0;
    background: #ffffff;
}

.project-info-container {
    width: min(1120px, 90%);
    margin: 0 auto;
}


/* ENCABEZADO DE SECCIÓN */

.project-section-heading {
    margin-bottom: 55px;
}

.project-section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    margin-bottom: 18px;

    background: #fff3e8;
    color: #ff7417;

    font-size: 13px;
    font-weight: 800;
}

.project-section-label {
    display: block;

    margin-bottom: 12px;

    color: #ff7417;

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

    letter-spacing: 2px;
    text-transform: uppercase;
}

.project-section-heading h2 {
    margin: 0;

    color: #08224a;

    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
    font-weight: 800;
}


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

.project-description {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 70px;

    margin-bottom: 90px;
}

.project-description-main {
    color: #08224a;

    font-size: 20px;
    line-height: 1.65;
    font-weight: 600;
}

.project-description-main p {
    margin: 0;
}

.project-description-secondary {
    color: #66758a;

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

.project-description-secondary p {
    margin: 0 0 18px;
}


/* =========================================================
   DATOS DEL PROYECTO
   ========================================================= */

.project-data {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

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

.project-data-item {
    padding: 30px 35px;

    border-right: 1px solid #e4e8ed;
}

.project-data-item:last-child {
    border-right: none;
}

.project-data-label {
    display: block;

    margin-bottom: 8px;

    color: #ff7417;

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

    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.project-data-value {
    color: #08224a;

    font-size: 17px;
    line-height: 1.5;
    font-weight: 700;
}


/* =========================================================
   05. GALERÍA PRINCIPAL
   ========================================================= */

.project-gallery {
    padding: 100px 0;

    background: #E5E7EB;
}

.project-gallery-container {
    width: min(1120px, 90%);
    margin: 0 auto;
}


/* CABECERA */

.project-gallery-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 45px;
}

.project-gallery-heading h2 {
    margin: 0;

    color: #08224a;

    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
    font-weight: 800;
}

.project-gallery-heading p {
    max-width: 460px;

    margin: 0;

    color: #66758a;

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


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

.project-gallery-main {
    position: relative;

    width: 100%;

    overflow: hidden;

    background: #ffffff;

    box-shadow: 0 18px 45px rgba(8, 34, 74, 0.12);
}

.project-gallery-main img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: cover;
}


/* =========================================================
   GALERÍA SECUNDARIA
   ========================================================= */

.project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 24px;

    margin-top: 24px;
}

.project-gallery-card {
    position: relative;

    overflow: hidden;

    background: #ffffff;

    box-shadow: 0 12px 30px rgba(8, 34, 74, 0.09);
}

.project-gallery-card img {
    display: block;

    width: 100%;
    height: 320px;

    object-fit: cover;

    transition: transform 0.45s ease;
}

.project-gallery-card:hover img {
    transform: scale(1.035);
}


/* =========================================================
   PIE DE IMAGEN
   ========================================================= */

.project-gallery-caption {
    padding: 20px 22px;

    background: #ffffff;
}

.project-gallery-caption span {
    display: block;

    margin-bottom: 6px;

    color: #ff7417;

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

    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.project-gallery-caption h3 {
    margin: 0;

    color: #08224a;

    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
}


/* =========================================================
   06. SOLUCIÓN DESARROLLADA
   ========================================================= */

.project-solution {
    padding: 100px 0;

    background: #ffffff;
}

.project-solution-container {
    width: min(1120px, 90%);
    margin: 0 auto;
}

.project-solution-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    gap: 80px;

    align-items: center;
}

.project-solution-content h2 {
    margin: 0 0 24px;

    color: #08224a;

    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
    font-weight: 800;
}

.project-solution-content h2 span {
    color: #ff7417;
}

.project-solution-content p {
    margin: 0 0 20px;

    color: #66758a;

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

.project-solution-list {
    margin: 30px 0 0;
    padding: 0;

    list-style: none;
}

.project-solution-list li {
    position: relative;

    margin-bottom: 14px;
    padding-left: 28px;

    color: #08224a;

    font-size: 15px;
    line-height: 1.6;
    font-weight: 600;
}

.project-solution-list li::before {
    content: "";

    position: absolute;
    top: 9px;
    left: 0;

    width: 8px;
    height: 8px;

    background: #ff7417;
}


/* =========================================================
   IMAGEN DE SOLUCIÓN
   ========================================================= */

.project-solution-image {
    position: relative;

    overflow: hidden;

    background: #E5E7EB;

    box-shadow: 0 20px 45px rgba(8, 34, 74, 0.12);
}

.project-solution-image img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: cover;
}


/* =========================================================
   07. CTA DEL PROYECTO
   ========================================================= */

.project-cta {
    padding: 85px 0;

    background: #08224a;
}

.project-cta-container {
    width: min(1120px, 90%);
    margin: 0 auto;

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

    gap: 50px;
}

.project-cta-content {
    max-width: 700px;
}

.project-cta-label {
    display: block;

    margin-bottom: 12px;

    color: #ff7417;

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

    letter-spacing: 2px;
    text-transform: uppercase;
}

.project-cta h2 {
    margin: 0 0 15px;

    color: #ffffff;

    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.15;
    font-weight: 800;
}

.project-cta p {
    margin: 0;

    color: #c9d4e3;

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

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

    min-width: 190px;

    padding: 17px 28px;

    background: #ff7417;
    color: #ffffff;

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

    text-decoration: none;

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

.project-cta-button:hover {
    background: #e9660b;

    transform: translateY(-2px);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .project-description {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .project-data {
        grid-template-columns: 1fr;
    }

    .project-data-item {
        border-right: none;
        border-bottom: 1px solid #e4e8ed;
    }

    .project-data-item:last-child {
        border-bottom: none;
    }

    .project-gallery-heading {
        display: block;
    }

    .project-gallery-heading p {
        margin-top: 20px;
    }

    .project-solution-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .project-cta-container {
        display: block;
    }

    .project-cta-button {
        margin-top: 30px;
    }
}


@media (max-width: 650px) {

    .project-info,
    .project-gallery,
    .project-solution {
        padding: 70px 0;
    }

    .project-gallery-grid {
        grid-template-columns: 1fr;
    }

    .project-gallery-card img {
        height: auto;
    }

    .project-description-main {
        font-size: 18px;
    }

    .project-data-item {
        padding: 24px 20px;
    }

    .project-cta {
        padding: 65px 0;
    }
}
/* =========================================================
   PUENTES GRÚA — PARTE 3
   HERO + DETALLES FINALES + RESPONSIVE
   ========================================================= */


/* =========================================================
   01. HERO DEL PROYECTO
   ========================================================= */

.project-hero {
    position: relative;

    min-height: 560px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #08224a;
}

.project-hero-image {
    position: absolute;
    inset: 0;

    z-index: 0;
}

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

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

    display: block;
}

.project-hero::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(4, 25, 57, 0.97) 0%,
            rgba(4, 25, 57, 0.88) 34%,
            rgba(4, 25, 57, 0.48) 58%,
            rgba(4, 25, 57, 0.10) 100%
        );
}

.project-hero-container {
    position: relative;

    z-index: 2;

    width: min(1120px, 90%);

    margin: 0 auto;

    padding: 100px 0;
}

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

.project-hero-breadcrumb {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 25px;

    color: #ffffff;

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

    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.project-hero-breadcrumb span:first-child {
    color: #ff7417;
}

.project-hero-breadcrumb span:last-child {
    color: #d6dfeb;
}

.project-hero h1 {
    margin: 0 0 25px;

    color: #ffffff;

    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.05;

    font-weight: 800;
}

.project-hero h1 span {
    color: #ff7417;
}

.project-hero-description {
    max-width: 600px;

    margin: 0;

    color: #d9e2ed;

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


/* =========================================================
   02. ETIQUETA DEL HERO
   ========================================================= */

.project-hero-tag {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    margin-bottom: 18px;

    color: #ff7417;

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

    letter-spacing: 2px;
    text-transform: uppercase;
}

.project-hero-tag::before {
    content: "";

    width: 28px;
    height: 2px;

    background: #ff7417;
}


/* =========================================================
   03. BOTONES DEL HERO
   ========================================================= */

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

    gap: 14px;

    margin-top: 35px;
}

.project-button-primary,
.project-button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 50px;

    padding: 0 25px;

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

    text-decoration: none;

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

.project-button-primary {
    background: #ff7417;
    color: #ffffff;
}

.project-button-primary:hover {
    background: #e9660b;

    transform: translateY(-2px);
}

.project-button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.55);

    color: #ffffff;

    background: transparent;
}

.project-button-secondary:hover {
    border-color: #ffffff;

    background: rgba(255, 255, 255, 0.08);

    transform: translateY(-2px);
}


/* =========================================================
   04. ELEMENTO DECORATIVO
   ========================================================= */

.project-hero-decoration {
    position: absolute;

    right: -100px;
    bottom: -160px;

    z-index: 2;

    width: 420px;
    height: 420px;

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

    border-radius: 50%;
}

.project-hero-decoration::before {
    content: "";

    position: absolute;

    inset: 45px;

    border: 1px solid rgba(255, 116, 23, 0.20);

    border-radius: 50%;
}


/* =========================================================
   05. CARACTERÍSTICAS DEL PROYECTO
   ========================================================= */

.project-features {
    padding: 90px 0;

    background: #E5E7EB;
}

.project-features-container {
    width: min(1120px, 90%);

    margin: 0 auto;
}

.project-features-header {
    max-width: 700px;

    margin-bottom: 45px;
}

.project-features-header span {
    display: block;

    margin-bottom: 12px;

    color: #ff7417;

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

    letter-spacing: 2px;
    text-transform: uppercase;
}

.project-features-header h2 {
    margin: 0;

    color: #08224a;

    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
    font-weight: 800;
}

.project-features-grid {
    display: grid;

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

    gap: 20px;
}

.project-feature {
    padding: 32px 26px;

    background: #ffffff;

    border-top: 3px solid #ff7417;

    box-shadow: 0 10px 30px rgba(8, 34, 74, 0.07);

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

.project-feature:hover {
    transform: translateY(-5px);

    box-shadow: 0 18px 38px rgba(8, 34, 74, 0.11);
}

.project-feature-number {
    display: block;

    margin-bottom: 20px;

    color: #ff7417;

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

.project-feature h3 {
    margin: 0 0 12px;

    color: #08224a;

    font-size: 18px;
    line-height: 1.3;
    font-weight: 800;
}

.project-feature p {
    margin: 0;

    color: #718096;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   06. TECNOLOGÍA / RESULTADO
   ========================================================= */

.project-result {
    padding: 100px 0;

    background: #ffffff;
}

.project-result-container {
    width: min(1120px, 90%);

    margin: 0 auto;
}

.project-result-box {
    position: relative;

    padding: 70px;

    overflow: hidden;

    background: #08224a;
}

.project-result-box::after {
    content: "";

    position: absolute;

    right: -150px;
    top: -180px;

    width: 430px;
    height: 430px;

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

    border-radius: 50%;
}

.project-result-content {
    position: relative;

    z-index: 1;

    max-width: 750px;
}

.project-result-label {
    display: block;

    margin-bottom: 15px;

    color: #ff7417;

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

    letter-spacing: 2px;
    text-transform: uppercase;
}

.project-result h2 {
    margin: 0 0 20px;

    color: #ffffff;

    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    font-weight: 800;
}

.project-result p {
    margin: 0;

    color: #cbd6e5;

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


/* =========================================================
   07. NAVEGACIÓN ENTRE PROYECTOS
   ========================================================= */

.project-navigation {
    padding: 35px 0;

    background: #ffffff;

    border-top: 1px solid #e5e9ee;
}

.project-navigation-container {
    width: min(1120px, 90%);

    margin: 0 auto;

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

    gap: 25px;
}

.project-navigation a {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    color: #08224a;

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

    text-decoration: none;

    transition: color 0.25s ease;
}

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

.project-navigation .next-project {
    margin-left: auto;
}


/* =========================================================
   08. AJUSTES PARA TABLET
   ========================================================= */

@media (max-width: 1000px) {

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

    .project-hero {
        min-height: 520px;
    }

    .project-hero-container {
        padding: 85px 0;
    }
}


/* =========================================================
   09. AJUSTES PARA MÓVIL
   ========================================================= */

@media (max-width: 700px) {

    .project-hero {
        min-height: 620px;
    }

    .project-hero::after {
        background:
            linear-gradient(
                180deg,
                rgba(4, 25, 57, 0.92) 0%,
                rgba(4, 25, 57, 0.78) 55%,
                rgba(4, 25, 57, 0.92) 100%
            );
    }

    .project-hero-container {
        padding: 75px 0;
    }

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

    .project-hero-description {
        font-size: 15px;
    }

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

    .project-button-primary,
    .project-button-secondary {
        width: 100%;
    }

    .project-features-grid {
        grid-template-columns: 1fr;
    }

    .project-result-box {
        padding: 45px 30px;
    }

    .project-navigation-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .project-navigation .next-project {
        margin-left: 0;
    }

}


/* =========================================================
   10. PANTALLAS MUY PEQUEÑAS
   ========================================================= */

@media (max-width: 450px) {

    .project-hero {
        min-height: 650px;
    }

    .project-hero h1 {
        font-size: 38px;
    }

    .project-section-heading h2,
    .project-gallery-heading h2,
    .project-solution-content h2,
    .project-features-header h2 {
        font-size: 30px;
    }

    .project-result-box {
        padding: 40px 22px;
    }

}

/* =========================================================
   FOOTER UNIFICADO CADIK
   ========================================================= */

.site-footer {
    background: #08172e;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 0.8fr;
    gap: 65px;
    padding-top: 65px;
    padding-bottom: 55px;
}

.footer-logo {
    width: 170px;
    height: auto;
    object-fit: contain;
}

.footer-description {
    max-width: 280px;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    line-height: 1.8;
}

.footer-column h3 {
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.footer-links-list,
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-links-list a,
.footer-contact-list a,
.footer-contact-list li {
    color: rgba(255, 255, 255, 0.58);
    font-size: 11px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #f47c20;
    font-size: 13px;
}

.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;
}

@media (max-width: 1100px) {
    .footer-container {
        width: min(100% - 50px, 1000px);
        gap: 40px;
    }
}

@media (max-width: 800px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
}

@media (max-width: 560px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}
