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

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Raleway:wght@500;600;700;800&display=swap');

body{
    font-family: var(--font-body);
    background: var(--color-background);
    color: var(--color-text);
    font-size: var(--fs-body);
    line-height: 1.6;
}

.container{
    width:min(100% - 40px, var(--container));
    margin:0 auto;
}

section{
    padding:var(--space-xxl) 0;
}

h1,h2,h3,h4,h5,h6{
    font-family:var(--font-title);
    line-height:1.1;
}

h1{
    font-size:var(--fs-h1);
}

h2{
    font-size:var(--fs-h2);
}

h3{
    font-size:var(--fs-h3);
}

p{
    color:var(--color-text-light);
}/* ======================================================
   HEADER
====================================================== */

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(255,255,255,.95);
    backdrop-filter: blur(10px);

    box-shadow: var(--shadow-sm);
}

.header .container{

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

    height:90px;

}

.logo img{

    height:55px;
    width:auto;

}

.menu{

    display:flex;
    gap:40px;

}

.menu a{

    font-family:var(--font-body);
    font-weight:500;

    transition:var(--transition);

}

.menu a:hover{

    color:var(--color-primary);

}

.btn-primary{

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

    padding:15px 28px;

    background:var(--color-secondary);
    color:white;

    border-radius:var(--radius-md);

    font-weight:600;

    transition:var(--transition);

}

.btn-primary:hover{

    transform:translateY(-2px);

    box-shadow:var(--shadow-md);

}/* ======================================================
   HERO
====================================================== */

.hero{

    min-height:100vh;

    display:flex;
    align-items:center;

    padding: top 125px;

    background:
    linear-gradient(135deg,
    var(--color-primary-dark) 0%,
    var(--color-primary) 60%,
    var(--color-primary-light) 100%);

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

    color:white;

}

.hero-content{

    max-width:1000px;

    display:flex;

    flex-direction:column;

    justify-content:left;

}


.subtitle{

    display:inline-flex;

    align-items:left;

    width:max-content;

    padding:8px 16px;

    border-radius:50px;

    background:rgba(245,130,32,.15);

    border:1px solid rgba(245,130,32,.35);

    color:var(--color-secondary);

    font-size:.9rem;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:30px;

}

.hero h1{

    font-size:clamp(3.5rem,6vw,5.5rem);

    font-weight:800;

    line-height:1.05;

    letter-spacing:-2px;

    margin-bottom:30px;

    color:white;

}

.hero p{

    font-size:1.3rem;

    line-height:1.8;

    color:rgba(255,255,255,.88);

    max-width:650px;

    margin-bottom:45px;

}

.hero-buttons{

    display:flex;

    gap:20px;

}

.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 28px;

    border:2px solid white;

    color:white;

    border-radius:var(--radius-md);

    font-weight:600;

    transition:var(--transition);

}

.btn-secondary:hover{

    background:white;

    color:var(--color-primary);

}/* ======================================================
   MEJORAS HEADER
====================================================== */

.nav{
    display:flex;
    align-items:center;
}

.menu{
    display:flex;
    align-items:center;
    gap:38px;
}

.menu a{
    position:relative;
    font-size:16px;
    font-weight:600;
    color:var(--color-text);
}

.menu a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:0;
    height:2px;

    background:var(--color-secondary);

    transition:var(--transition);

}

.menu a:hover::after{

    width:100%;

}

.btn-primary{

    background:var(--color-secondary);

    color:white;

    font-weight:700;

    padding:15px 30px;

    border-radius:10px;

}

.btn-primary:hover{

    background:#e46d07;

}
/* ======================================================
   FEATURES
====================================================== */

.features{

    padding:120px 0;

    background:#fff;

}

.section-title{

    text-align:center;

    max-width:760px;

    margin:0 auto 70px;

}

.section-title span{

    color:var(--color-secondary);

    font-weight:700;

    letter-spacing:2px;

    font-size:.9rem;

}

.section-title h2{

    margin:20px 0;

    color:var(--color-primary);

    font-size:2.8rem;

}

.features-grid{

    display:grid;

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

    gap:30px;

}

.feature-card{

    background:white;

    padding:40px 30px;

    border-radius:16px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.3s;

}

.feature-card:hover{

    transform:translateY(-10px);

}

.feature-card h3{

    color:var(--color-primary);

    margin-bottom:20px;

}
/* ======================================================
   ABOUT
====================================================== */

.about{

    padding:120px 0;

    background:var(--color-background);

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:left;

    gap:80px;

}

.about-image img{

    width:100%;

    border-radius:20px;

    display:block;

    box-shadow:0 25px 60px rgba(0,0,0,.18);

}

.section-tag{

    display:inline-block;

    color:var(--color-secondary);

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:20px;

}

.about-content h2{

    color:var(--color-primary);

    font-size:3rem;

    line-height:1.2;

    margin-bottom:30px;

}

.about-content p{

    margin-bottom:22px;

    color:var(--color-text-light);

    font-size:1.08rem;

    line-height:1.8;

}
/* ======================================================
   PROCESS
====================================================== */

.process{

    padding:120px 0;

    background:white;

}

.process-grid{

    display:grid;

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

    gap:30px;

    margin-top:70px;

}

.process-card{

    position:relative;

    padding:45px 35px;

    border-radius:18px;

    background:white;

    border:1px solid rgba(11,27,71,.08);

    box-shadow:0 20px 45px rgba(0,0,0,.06);

    transition:.35s;

}

.process-card:hover{

    transform:translateY(-10px);

    box-shadow:0 35px 60px rgba(11,27,71,.15);

}

.number{

    font-size:3.5rem;

    font-weight:800;

    color:rgba(245,130,32,.18);

    margin-bottom:15px;

}

.process-card h3{

    color:var(--color-primary);

    margin-bottom:18px;

}

.process-card p{

    color:var(--color-text-light);

    line-height:1.7;

}
/*==================================================
SERVICIOS
==================================================*/

.services{

    padding:120px 0;

    background:#F8F9FB;

}

.services-grid{

    display:grid;

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

    gap:35px;

}

.service-card{

    position:relative;

    overflow:hidden;

    border-radius:20px;

    height:420px;

    display:block;

}

.service-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.7s;

}

.service-card:hover img{

    transform:scale(1.08);

}

.overlay{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:40px;

    background:linear-gradient(
        to top,
        rgba(11,27,71,.92),
        rgba(11,27,71,.25),
        transparent
    );

}

.overlay h3{

    color:white;

    font-size:2rem;

    margin-bottom:15px;

}

.overlay span{

    color:var(--color-secondary);

    font-weight:700;

    letter-spacing:1px;

}
/*==================================================
PROYECTOS
==================================================*/

.projects{

    padding:120px 0;

    background:white;

}

.projects-grid{

    display:grid;

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

    gap:35px;

}

.project-card{

    background:white;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

    transition:.35s;

}

.project-card:hover{

    transform:translateY(-10px);

}

.project-image{

    height:240px;

    background:linear-gradient(
        135deg,
        var(--color-primary),
        #18387f
    );

}

.project-info{

    padding:30px;

}

.project-info h3{

    color:var(--color-primary);

    margin-bottom:15px;

}

.project-info p{

    color:var(--color-text-light);

    line-height:1.7;

}/*==================================================
CLIENTES
==================================================*/

.clients{

    padding:120px 0;

    background:var(--color-background);

}

.clients-grid{

    display:grid;

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

    gap:30px;

    margin-top:60px;

}

.client-logo{

    height:140px;

    background:white;

    border-radius:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:1.1rem;

    font-weight:600;

    color:var(--color-primary);

    box-shadow:0 15px 35px rgba(0,0,0,.06);

}
/*==================================================
CTA
==================================================*/

.cta{

    padding:120px 20px;

    text-align:center;

    background:linear-gradient(
        135deg,
        #0B1B47,
        #142A6E
    );

}

.cta h2{

    color:white;

    font-size:3rem;

    max-width:900px;

    margin:0 auto 25px;

}

.cta p{

    color:rgba(255,255,255,.85);

    max-width:700px;

    margin:0 auto 40px;

    line-height:1.8;

}
/*==================================================
FOOTER
==================================================*/

.footer{

    background:#081330;

    color:white;

    padding:90px 0 0;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:60px;

}

.footer-logo{

    width:180px;

    margin-bottom:25px;

}

.footer h4{

    margin-bottom:20px;

    color:white;

}

.footer ul{

    list-style:none;

    padding:0;

}

.footer li{

    margin-bottom:12px;

}

.footer a{

    color:rgba(255,255,255,.75);

    text-decoration:none;

}

.footer p{

    color:rgba(255,255,255,.75);

    line-height:1.8;

}

.footer-copy{

    margin-top:70px;

    padding:25px;

    text-align:center;

    border-top:1px solid rgba(255,255,255,.1);

    color:rgba(255,255,255,.5);

}
/*==================================================
PAGE HERO
==================================================*/

.page-hero{

    background:linear-gradient(rgba(11,27,71,.92), rgba(11,27,71,.92)),
               url("../images/hero/hero-about.jpg") center/cover;

    padding:180px 0 120px;

    text-align:center;

}

.page-hero h1{

    color:white;

    font-size:4rem;

    margin:20px 0;

}

.page-hero p{

    color:rgba(255,255,255,.85);

    max-width:700px;

    margin:0 auto;

    line-height:1.8;

}
/*==================================================
ESSENCE
==================================================*/

.essence{

    background:#fff;

}

.essence-grid{

    margin-top:60px;

    display:grid;

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

    gap:30px;

}

.essence-card{

    position:relative;

    background:#fff;

    padding:40px 30px;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}

.essence-card::before{

    content:"";

    position:absolute;

    top:0;

    left:-100%;

    width:100%;

    height:4px;

    background:var(--color-secondary);

    transition:.45s;

}

.essence-card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 60px rgba(0,0,0,.12);

}

.essence-card:hover::before{

    left:0;

}
/*==================================================
HISTORY
==================================================*/

.history{

    padding:120px 0;

    background:#fff;

}

.history-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.history-image{

    height:520px;

    border-radius:24px;

    background:linear-gradient(
        135deg,
        #0B1B47,
        #18387f
    );

}

.history-content h2{

    margin:20px 0;

}

.history-content p{

    margin-bottom:35px;

    color:var(--color-text-light);

    line-height:1.9;

}
/*==================================================
WHY EDIFEX
==================================================*/

.why-edifex{

    padding:120px 0;

    background:var(--color-background);

}

.why-grid{

    display:grid;

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

    gap:35px;

    margin-top:60px;

}

.why-card{

    background:#fff;

    padding:45px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    transition:.35s;

}

.why-card:hover{

    transform:translateY(-10px);

}

.why-card h3{

    color:var(--color-primary);

    margin-bottom:15px;

}

.why-card p{

    color:var(--color-text-light);

    line-height:1.8;

}
/*==================================================
ÁREAS DE INTERVENCIÓN
==================================================*/

.services-home .services-home{

    padding:120px 0;

    background:#fff;

}

.services-home .services-grid{

    display:grid;

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

    gap:35px;

    margin-top:60px;

}

.services-home .service-card{

    position:relative;

    background:#fff;

    padding:45px;

    border-radius:22px;

    border:1px solid rgba(11,27,71,.08);

    box-shadow:0 15px 40px rgba(0,0,0,.05);

    transition:.35s;

    overflow:hidden;

}

.services-home .service-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:#CE4500;

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s;

}

.services-home .service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 55px rgba(11,27,71,.12);

}

.services-home .service-card:hover::before{

    transform:scaleX(1);

}

.services-home .service-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    background:#0B1B47;

    color:#F4F4F4;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    margin-bottom:28px;

}

.services-home .service-card h3{

    margin-bottom:20px;

}

.services-home .service-card ul{

    list-style:none;

    padding:0;

    margin:0 0 30px;

}

.services-home .service-card li{

    margin-bottom:12px;

    color:var(--color-text-light);

}

.services-home .service-card li::before{

    content:"•";

    color:#CE4500;

    margin-right:10px;

}

.services-home .service-card a{

    color:#0B1B47;

    font-weight:600;

    text-decoration:none;

}
/* =====================================================
   SERVICIOS - ÁREAS DE INTERVENCIÓN
===================================================== */

.services-home .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.services-home .service-card {
    position: relative;
    padding: 42px 38px;
    background: #ffffff;
    border: 1px solid rgba(11, 27, 71, 0.08);
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(11, 27, 71, 0.07);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.services-home .service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--color-secondary);
}

.services-home .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(11, 27, 71, 0.12);
}

.services-home .service-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    border-radius: 12px;
    background: var(--color-primary);
    color: #ffffff;
    font-size: 22px;
}

.services-home .service-card h3 {
    margin-bottom: 18px;
    font-size: 1.35rem;
    color: var(--color-primary);
}

.services-home .service-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.services-home .service-card li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    color: var(--color-text-light);
}

.services-home .service-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-secondary);
}
/* =====================================================
   SERVICIOS - DETALLE
===================================================== */

.service-details {
    padding: 110px 0;
    background: var(--color-background);
}

.service-detail-list {
    margin-top: 60px;
    display: grid;
    gap: 22px;
}

.service-detail {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 30px;
    padding: 38px 42px;
    background: #ffffff;
    border: 1px solid rgba(11, 27, 71, 0.08);
    border-radius: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-detail:hover {
    transform: translateX(6px);
    box-shadow: 0 15px 35px rgba(11, 27, 71, 0.08);
}

.service-detail-number {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-secondary);
}

.service-detail .subtitle {
    display: inline-block;
    margin-bottom: 10px;
}

.service-detail h3 {
    margin-bottom: 18px;
    color: var(--color-primary);
    font-size: 1.45rem;
}

.service-detail ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px 30px;
}

.service-detail li {
    position: relative;
    padding-left: 16px;
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.service-detail li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-secondary);
}
/* =====================================================
   SERVICIOS - METODOLOGÍA
===================================================== */

.methodology {
    padding: 110px 0;
    background: #ffffff;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 55px;
}

.methodology-card {
    position: relative;
    padding: 42px 34px;
    min-height: 220px;
    border-top: 3px solid var(--color-secondary);
    background: var(--color-background);
    border-radius: 0 0 18px 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.methodology-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 40px rgba(11, 27, 71, 0.10);
}

.methodology-card > span {
    display: block;
    margin-bottom: 28px;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-secondary);
}

.methodology-card h3 {
    margin-bottom: 12px;
    color: var(--color-primary);
    font-size: 1.35rem;
}

.methodology-card p {
    max-width: 300px;
    color: var(--color-text-light);
}
/* =====================================================
   SERVICIOS - POR QUÉ EDIFEX
===================================================== */

.why-edifex {
    padding: 110px 0;
    background: var(--color-primary);
}

.why-edifex .section-title span,
.why-edifex .section-title h2 {
    color: #ffffff;
}

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

.why-card {
    padding: 34px 28px;
    min-height: 190px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.11);
}

.why-card > span {
    display: block;
    margin-bottom: 30px;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.why-card h3 {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 1.15rem;
}

.why-card p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
}
/* =====================================================
   SERVICIOS - CTA FINAL
===================================================== */

.services-cta {
    padding: 120px 0;
    text-align: center;
    background: #ffffff;
}

.services-cta .container {
    max-width: 850px;
}

.services-cta .subtitle {
    display: block;
    margin-bottom: 18px;
}

.services-cta h2 {
    margin-bottom: 35px;
    color: var(--color-primary);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
}

.services-cta .btn-primary {
    display: inline-flex;
}
/* =====================================================
   PROYECTOS - OBRAS DESTACADAS
===================================================== */

.projects {
    padding: 110px 0;
    background: var(--color-background);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 55px;
}

.project-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(11, 27, 71, 0.08);
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(11, 27, 71, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.project-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 45px rgba(11, 27, 71, 0.12);
}

.project-image {
    position: relative;
    height: 280px;
    background: var(--color-primary);
    overflow: hidden;
}

.project-image::after {
    content: "GRUPO EDIFEX";
    position: absolute;
    right: 24px;
    bottom: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.65);
}

.project-image span {
    position: absolute;
    left: 24px;
    top: 22px;
    z-index: 2;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.project-content {
    padding: 32px;
}

.project-client {
    display: block;
    margin-bottom: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--color-secondary);
}

.project-content h3 {
    margin-bottom: 8px;
    color: var(--color-primary);
    font-size: 1.45rem;
}

.project-content p {
    margin-bottom: 18px;
    color: var(--color-text-light);
}

.project-content strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-text);
}
/* =====================================================
   PROYECTOS - ALIANZAS | AJUSTE VISUAL
===================================================== */

.alliances {
    position: relative;
    overflow: hidden;
}

.alliances::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -180px;
    top: 50px;
    border: 1px solid rgba(11, 27, 71, 0.08);
    border-radius: 50%;
}

.alliances::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -100px;
    top: 130px;
    border: 1px solid rgba(245, 130, 32, 0.18);
    border-radius: 50%;
}

.alliances .container {
    position: relative;
    z-index: 2;
}

.alliance-card {
    position: relative;
    overflow: hidden;
}

.alliance-card::after {
    content: "";
    position: absolute;
    width: 55px;
    height: 55px;
    right: -20px;
    bottom: -20px;
    border-radius: 50%;
    background: rgba(245, 130, 32, 0.08);
}

.alliance-locations {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.alliance-locations > span {
    margin-bottom: 0;
}

.alliance-locations div {
    justify-content: flex-end;
}
/* =====================================================
   PROYECTOS - CTA FINAL
===================================================== */

.projects-cta {
    position: relative;
    padding: 120px 0;
    text-align: center;
    background: var(--color-primary);
    overflow: hidden;
}

.projects-cta::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    left: -250px;
    top: -250px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.projects-cta .container {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.projects-cta .subtitle {
    display: block;
    margin-bottom: 18px;
    color: var(--color-secondary);
}

.projects-cta h2 {
    margin-bottom: 18px;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
}

.projects-cta p {
    margin: 0 auto 35px;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.72);
}

.projects-cta .btn-primary {
    display: inline-flex;
}
/* =====================================================
   PROYECTOS - RED INTERNACIONAL
===================================================== */

.countries {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    width: 100%;
}

.country {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 22px 16px;
    border: 1px solid rgba(11, 27, 71, 0.1);
    border-radius: 16px;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.country:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(11, 27, 71, 0.1);
}

.country strong {
    padding: 0;
    border: 0;
    color: var(--color-primary);
    font-size: 0.9rem;
}

.country-map {
    position: relative;
    width: 75px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mapa estilizado */
.country-map::before {
    content: "";
    display: block;
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    opacity: 0.12;
    clip-path: polygon(
        18% 5%, 42% 0%, 72% 12%, 95% 35%,
        82% 55%, 91% 78%, 62% 94%,
        35% 78%, 8% 82%, 0% 53%, 12% 30%
    );
    transform: rotate(-8deg);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.country:hover .country-map::before {
    opacity: 0.22;
    transform: rotate(0deg) scale(1.08);
}

/* Punto de conexión */
.country-map span {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--color-secondary);
    box-shadow: 0 0 0 0 rgba(245, 130, 32, 0.4);
    animation: countryPulse 2s infinite;
}

@keyframes countryPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 130, 32, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(245, 130, 32, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(245, 130, 32, 0);
    }
}/* =====================================================
   ALIANZAS - CORRECCIÓN FINAL
===================================================== */

.alliances-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
    width: 100% !important;
    margin-top: 50px !important;
}

.alliance-card {
    position: relative !important;
    display: block !important;
    min-height: 230px !important;
    padding: 32px !important;
    background: #ffffff !important;
    border: 1px solid rgba(11, 27, 71, 0.10) !important;
    border-radius: 18px !important;
    box-shadow: 0 12px 30px rgba(11, 27, 71, 0.06) !important;
    overflow: hidden !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.alliance-card:hover {
    transform: translateY(-7px) !important;
    box-shadow: 0 20px 40px rgba(11, 27, 71, 0.11) !important;
}

.alliance-card::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 4px !important;
    height: 100% !important;
    background: var(--color-secondary) !important;
}

.alliance-card::after {
    content: "" !important;
    position: absolute !important;
    right: -35px !important;
    bottom: -35px !important;
    width: 100px !important;
    height: 100px !important;
    border: 1px solid rgba(245, 130, 32, 0.15) !important;
    border-radius: 50% !important;
}

.alliance-number {
    display: block !important;
    margin-bottom: 25px !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    color: var(--color-secondary) !important;
}

.alliance-icon {
    position: absolute !important;
    top: 30px !important;
    right: 30px !important;
    width: 42px !important;
    height: 42px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 10px !important;
    background: var(--color-primary) !important;
    color: #ffffff !important;
    font-size: 20px !important;
}

.alliance-card h3 {
    margin-bottom: 12px !important;
    color: var(--color-primary) !important;
    font-size: 1.3rem !important;
}

.alliance-card p {
    max-width: 240px !important;
    color: var(--color-text-light) !important;
    font-size: 0.92rem !important;
    line-height: 1.6 !important;
}
/* =====================================================
   CONTACTO - INFORMACIÓN Y FORMULARIO
===================================================== */

.contact-main {
    padding: 110px 0;
    background: var(--color-background);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: start;
}

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

.contact-info h2 {
    margin: 18px 0;
    color: var(--color-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
}

.contact-info > p {
    max-width: 500px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.contact-data {
    display: grid;
    gap: 22px;
    margin-top: 45px;
}

.contact-data div {
    padding-left: 18px;
    border-left: 3px solid var(--color-secondary);
}

.contact-data span {
    display: block;
    margin-bottom: 5px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-text-light);
}

.contact-data strong {
    display: block;
    color: var(--color-primary);
    font-size: 0.95rem;
}

/* FORMULARIO */

.contact-form {
    padding: 42px;
    background: #ffffff;
    border: 1px solid rgba(11, 27, 71, 0.08);
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(11, 27, 71, 0.08);
}

.contact-form h3 {
    margin-bottom: 28px;
    color: var(--color-primary);
    font-size: 1.5rem;
}

.contact-form form {
    display: grid;
    gap: 18px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid rgba(11, 27, 71, 0.14);
    border-radius: 9px;
    background: #ffffff;
    color: var(--color-text);
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(245, 130, 32, 0.1);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form .btn-primary {
    width: fit-content;
    border: none;
    cursor: pointer;
}
/* =====================================================
   CONTACTO - SEDE CENTRAL
===================================================== */

.contact-location {
    padding: 30px 0 110px;
    background: var(--color-background);
}

.location-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    min-height: 360px;
    overflow: hidden;
    border-radius: 22px;
    background: var(--color-primary);
}

.location-info {
    position: relative;
    z-index: 2;
    padding: 65px;
}

.location-info .subtitle {
    color: var(--color-secondary);
}

.location-info h2 {
    margin: 18px 0;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
}

.location-info > p {
    max-width: 470px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.location-detail {
    margin-top: 35px;
    padding-left: 18px;
    border-left: 3px solid var(--color-secondary);
}

.location-detail span {
    display: block;
    margin-bottom: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.55);
}

.location-detail strong {
    color: #ffffff;
    font-size: 0.95rem;
}

/* RECURSO VISUAL */

.location-visual {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
}

.location-visual::before {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    top: 15px;
    right: 30px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.location-visual::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    top: 70px;
    right: 85px;
    border: 1px solid rgba(245, 130, 32, 0.35);
    border-radius: 50%;
}

.location-point {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    transform: translate(-50%, -50%);
}

.location-point::before {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--color-secondary);
    box-shadow:
        0 0 0 8px rgba(245, 130, 32, 0.15),
        0 0 0 18px rgba(245, 130, 32, 0.07);
    animation: locationPulse 2.2s infinite;
}

.location-point span {
    position: absolute;
    width: 5px;
    height: 5px;
    top: 7px;
    left: 7px;
    border-radius: 50%;
    background: #ffffff;
}

.location-label {
    position: absolute;
    bottom: 55px;
    right: 55px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.location-label small {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.5);
}

.location-label strong {
    color: #ffffff;
    font-size: 1rem;
}

@keyframes locationPulse {

    0% {
        box-shadow:
            0 0 0 8px rgba(245, 130, 32, 0.15),
            0 0 0 18px rgba(245, 130, 32, 0.07);
    }

    70% {
        box-shadow:
            0 0 0 16px rgba(245, 130, 32, 0),
            0 0 0 30px rgba(245, 130, 32, 0);
    }

    100% {
        box-shadow:
            0 0 0 8px rgba(245, 130, 32, 0.15),
            0 0 0 18px rgba(245, 130, 32, 0.07);
    }

}
/* =====================================================
   CONTACTO - CTA FINAL
===================================================== */

.contact-cta {
    position: relative;
    padding: 110px 0;
    text-align: center;
    background: var(--color-primary);
    overflow: hidden;
}

.contact-cta::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -250px;
    top: -250px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.contact-cta::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    left: -150px;
    bottom: -150px;
    border: 1px solid rgba(245, 130, 32, 0.18);
    border-radius: 50%;
}

.contact-cta .container {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.contact-cta .subtitle {
    display: block;
    margin-bottom: 20px;
    color: var(--color-secondary);
}

.contact-cta h2 {
    margin-bottom: 35px;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
}

.contact-cta .btn-primary {
    display: inline-flex;
}
/* =====================================================
   SERVICES HERO - AJUSTE GENERAL
===================================================== */

.services-hero {
    min-height: auto;
    padding: 110px 0 80px;
}

.services-hero .container {
    text-align: center;
}

.services-hero .hero-buttons {
    justify-content: center;
    align-items: center;
    margin-top: 55px;
}

.services-hero .hero-buttons a {
    flex: 0 0 auto;
    padding: 12px 22px;
    font-size: 0.8rem;
}
/* =====================================================
   HERO - INDICADORES TÉCNICOS
===================================================== */

.hero-indicators {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 50px;
}

.hero-indicators span {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.hero-indicators small {
    color: var(--color-secondary);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0;
}

.hero-indicators i {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.3);
}/* =====================================================
   ANIMACIÓN - INDICADORES DEL HERO
===================================================== */

.hero-indicators span {
    opacity: 0;
    transform: translateY(12px);
    animation: indicatorIn 0.6s ease forwards;
}

.hero-indicators span:nth-of-type(1) {
    animation-delay: 0.15s;
}

.hero-indicators span:nth-of-type(2) {
    animation-delay: 0.35s;
}

.hero-indicators span:nth-of-type(3) {
    animation-delay: 0.55s;
}

.hero-indicators i {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: center;
    animation: dividerIn 0.4s ease forwards;
}

.hero-indicators i:nth-of-type(1) {
    animation-delay: 0.28s;
}

.hero-indicators i:nth-of-type(2) {
    animation-delay: 0.48s;
}

@keyframes indicatorIn {

    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes dividerIn {

    from {
        opacity: 0;
        transform: scaleY(0);
    }

    to {
        opacity: 1;
        transform: scaleY(1);
    }

}
/* =====================================================
   FEATURE CARDS - DISEÑO MODERNO EDIFEX
===================================================== */

.features-grid {
    gap: 24px;
}

.feature-card {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f7f9fc 100%
        );

    border: 1px solid rgba(11, 27, 71, 0.08);

    padding: 34px 30px;

    border-radius: 18px;

    box-shadow:
        0 12px 35px rgba(11, 27, 71, 0.08);

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

.feature-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: var(--feature-color);

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

    transition: transform 0.35s ease;
}

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

    border-color: var(--feature-color);

    box-shadow:
        0 20px 45px rgba(11, 27, 71, 0.14);
}

.feature-card:hover::before {
    transform: scaleX(1);
}


/* COLORES */
.feature-engineering {
    --feature-color: #1769e8;
}

.feature-technology {
    --feature-color: #238ee8;
}

.feature-coverage {
    --feature-color: #32a8e8;
}

.feature-advisory {
    --feature-color: #55c5e8;
}
/* ICONO */

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

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

    margin-bottom: 28px;

    color: var(--feature-color);

    background:
        rgba(11, 27, 71, 0.035);

    border-radius: 16px;

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

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

    display: block;
}

.feature-card:hover .feature-icon {
    transform: translateY(-4px) scale(1.05);

    background:
        color-mix(
            in srgb,
            var(--feature-color) 10%,
            transparent
        );
}


/* TÍTULO */

.feature-card h3 {
    color: var(--color-primary);

    font-size: 1.45rem;

    line-height: 1.15;

    margin: 0 0 18px;

    max-width: 260px;
}


/* LÍNEA */

.feature-line {
    display: block;

    width: 42px;
    height: 3px;

    margin-bottom: 20px;

    border-radius: 10px;

    background: var(--feature-color);

    transition: width 0.35s ease;
}

.feature-card:hover .feature-line {
    width: 70px;
}


/* TEXTO */

.feature-card p {
    color: var(--color-text-light);

    font-size: 0.95rem;

    line-height: 1.65;

    margin: 0;

    max-width: 270px;
}/* AJUSTE ESPACIO ENTRE ABOUT Y METODOLOGÍA */

.process {
    padding-top: 30px;
}
/* AJUSTE ESPACIO ENTRE METODOLOGÍA Y SERVICIOS */

.services-home {
    padding-top: 20px;
}
/* AJUSTE ESPACIO ENTRE SERVICIOS Y OBRAS */

.projects {
    padding-top: 20px;
}
/* AJUSTE ESPACIO ENTRE OBRAS Y EMPRESAS */

.clients {
    padding-top: 20px;
}
/* =====================================================
   LOGOS - OBRAS DESTACADAS
===================================================== */

.project-image {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f5f7fa;
}

.project-image img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    display: block;
    transition: transform 0.35s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}
/* =====================================================
   EMPRESAS QUE CONFÍAN - LOGOS
===================================================== */

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.client-logo {
    min-height: 130px;

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

    padding: 24px 30px;

    background: #ffffff;

    border: 1px solid rgba(11, 27, 71, 0.08);

    border-radius: 16px;

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

.client-logo img {
    width: 100%;
    max-width: 190px;
    max-height: 75px;

    object-fit: contain;

    display: block;

    transition: transform 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-5px);

    border-color: rgba(23, 105, 232, 0.25);

    box-shadow:
        0 15px 35px rgba(11, 27, 71, 0.10);
}

.client-logo:hover img {
    transform: scale(1.04);
}
/* =====================================================
   WHATSAPP FLOTANTE
===================================================== */

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

    width: 58px;
    height: 58px;

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

    background: #25D366;
    color: white;

    border-radius: 50%;

    font-size: 30px;

    text-decoration: none;

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

    z-index: 9999;

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

.whatsapp-float:hover {
    transform: scale(1.08);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.25);
}
/* ================================
   SERVICIOS DESTACADOS - HOME
================================ */

.services-home .services-grid {
    gap: 24px;
}

.services-home .service-card {
    position: relative;
    min-height: 390px;
    display: block;
    overflow: hidden;
    border-radius: 18px;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    box-shadow: 0 12px 35px rgba(11, 27, 71, 0.10);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.services-home .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(11, 27, 71, 0.18);
}

.services-home .service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(8, 19, 48, 0.30) 0%,
        rgba(8, 19, 48, 0.78) 65%,
        rgba(8, 19, 48, 0.95) 100%
    );
    transition: background 0.35s ease;
}

.services-home .service-card:hover .service-overlay {
    background: linear-gradient(
        180deg,
        rgba(8, 19, 48, 0.20) 0%,
        rgba(8, 19, 48, 0.72) 65%,
        rgba(8, 19, 48, 0.94) 100%
    );
}

.services-home .service-content {
    position: relative;
    z-index: 2;
    min-height: 390px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-sizing: border-box;
}

.services-home .service-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0B1B47;
    color: #ffffff;
    border-radius: 12px;
    font-size: 22px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.20);
}

.services-home .service-card h3 {
    margin: 0 0 15px;
    color: #ffffff;
    font-size: 1.35rem;
    line-height: 1.2;
}

.services-home .service-card ul {
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
}

.services-home .service-card li {
    position: relative;
    margin-bottom: 8px;
    padding-left: 15px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    line-height: 1.5;
}

.services-home .service-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #F58220;
}

.services-home .service-link {
    display: inline-block;
    width: fit-content;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    transition: color 0.3s ease, transform 0.3s ease;
}

.services-home .service-card:hover .service-link {
    color: #F58220;
    transform: translateX(5px);
}/* =================================
   TARJETAS DE SERVICIOS - PÁGINA
================================= */

#servicios .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

#servicios .service-card {
    position: relative;
    min-height: 280px;
    padding: 30px;
    background: #ffffff;
    border: 1px solid rgba(11, 27, 71, 0.08);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(11, 27, 71, 0.08);
    overflow: hidden;
    box-sizing: border-box;
}

#servicios .service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(
        180deg,
        #1769e8,
        #55c5e8
    );
}

#servicios .service-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: #0B1B47;
    color: #ffffff;
    border-radius: 12px;
    font-size: 21px;
}

#servicios .service-card h3 {
    margin: 0 0 16px;
    color: #0B1B47;
    font-size: 1.25rem;
    line-height: 1.2;
}

#servicios .service-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

#servicios .service-card li {
    position: relative;
    margin-bottom: 9px;
    padding-left: 14px;
    color: #68758a;
    font-size: 0.92rem;
    line-height: 1.5;
}

#servicios .service-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #F58220;
}

#servicios .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 38px rgba(11, 27, 71, 0.12);
}
/* =================================
   MEJORA VISUAL - SERVICIOS
================================= */

#servicios .service-card {
    min-height: 360px;
    padding: 34px 34px 30px;
    background: linear-gradient(145deg, #ffffff 0%, #f7f9fc 100%);
    border: 1px solid rgba(11, 27, 71, 0.08);
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(11, 27, 71, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

#servicios .service-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1769e8, #55c5e8);
}

#servicios .service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 42px rgba(11, 27, 71, 0.13);
}

#servicios .service-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 22px;
    background: linear-gradient(135deg, #0B1B47, #1769e8);
    border-radius: 15px;
    font-size: 23px;
    box-shadow: 0 10px 22px rgba(11, 27, 71, 0.15);
}

#servicios .service-card h3 {
    margin-bottom: 14px;
    color: #0B1B47;
    font-size: 1.45rem;
    font-weight: 700;
}

#servicios .service-card p {
    margin: 0 0 22px;
    color: #68758a;
    font-size: 0.94rem;
    line-height: 1.7;
}

#servicios .service-card ul {
    margin-bottom: 22px;
}

#servicios .service-card li {
    margin-bottom: 9px;
    color: #4f5d73;
    font-size: 0.9rem;
}

#servicios .service-label {
    display: inline-block;
    padding: 7px 11px;
    border-radius: 30px;
    background: rgba(23, 105, 232, 0.08);
    color: #1769e8;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1.2px;
}
#servicios .service-card p {
    font-size: 1rem;
    line-height: 1.75;
}

#servicios .service-card li {
    font-size: 0.95rem;
    margin-bottom: 10px;
}

#servicios .service-label {
    font-size: 0.72rem;
    padding: 8px 12px;
}
/* =================================
   ICONOS - NUESTRA ESENCIA
================================= */

.essence-card .icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: #1769e8;
    background: linear-gradient(
        135deg,
        rgba(23, 105, 232, 0.10),
        rgba(85, 197, 232, 0.10)
    );
    border: 1px solid rgba(23, 105, 232, 0.10);
    border-radius: 15px;
}

.essence-card .icon svg {
    width: 31px;
    height: 31px;
    display: block;
}

.essence-card:hover .icon {
    color: #0B1B47;
    transform: translateY(-3px);
    transition: transform 0.3s ease, color 0.3s ease;
}
/* Acercar RED INTERNACIONAL a las tarjetas superiores */
.alliance-locations {
    margin-top: 25px;
}
