
:root{
    --primary:#1F3B6D;
    --secondary:#36A3DB;
    --accent:#ED1727;

    --white:#ffffff;
    --light:#f6f8fc;
    --gray:#6b7280;
    --dark:#202020;

    --radius:18px;

    --shadow:0 15px 40px rgba(0,0,0,.08);

    --transition:.35s ease;
}

/* ==========================
   RESET
========================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#f6f8fc;
overflow-x:hidden;
}

/*=========================================
SCROLLBAR
=========================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#edf2f7;

}

::-webkit-scrollbar-thumb{

    background:#36A3DB;

    border-radius:30px;

}

::-webkit-scrollbar-thumb:hover{

    background:#ED1727;

}

/*==================================================
TOPBAR
==================================================*/

.topbar{

    background:linear-gradient(
    90deg,
    var(--primary),
    #29508d);

    color:var(--white);

    height:45px;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:60px;

    font-size:.90rem;

    font-weight:500;

    position:relative;

    z-index:1000;

}

.topbar div{

    display:flex;

    align-items:center;

    gap:10px;

}

.topbar i{

    color:var(--secondary);

    font-size:15px;

}

.topbar div:hover{

    color:#dbeafe;

}

/*==================================================
HEADER
==================================================*/

header{

    position:sticky;

    top:0;

    left:0;

    width:100%;

    background:rgba(255,255,255,.96);

    backdrop-filter:blur(14px);

    box-shadow:0 6px 25px rgba(0,0,0,.05);

    z-index:999;

    transition:.35s;

    border-bottom:1px solid rgba(31,59,109,.08);

}

/*==================================================
NAVBAR
==================================================*/

nav{

    width:min(1320px,92%);

    margin:auto;

    height:95px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

/*==================================================
LOGO
==================================================*/

.logo{

    display:flex;

    align-items:center;

}

.logo a{

    display:flex;

    align-items:center;

}

.logo img{

    height:72px;

    width:auto;

    transition:.35s;

}

.logo img:hover{

    transform:scale(1.05);

}

/*==================================================
MENU
==================================================*/

nav ul{
    display: flex;
    align-items: center;
    gap: 42px;
    list-style: none;   /* <-- Quita los puntos */
    margin: 0;
    padding: 0;
}
nav ul li{

    position:relative;

}

nav ul li a{

    color:var(--primary);

    font-size:16px;

    font-weight:600;

    position:relative;

    transition:.35s;

    text-decoration: none;
}

/*==================================================
LINEA INFERIOR
==================================================*/

nav ul li a::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:-10px;

    width:0;

    height:3px;

    border-radius:20px;

    background:var(--accent);

    transition:.35s;

    transform:translateX(-50%);

}

nav ul li a:hover{

    color:var(--accent);

}

nav ul li a:hover::after{

    width:100%;

}

nav ul li a.active{

    color:var(--accent);

}

nav ul li a.active::after{

    width:100%;

}

/*==================================================
BOTON NAV
==================================================*/

.btn-nav{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    padding:16px 32px;

    background:var(--accent);

    color:var(--white);

    border-radius:14px;

    font-weight:600;

    box-shadow:0 12px 30px rgba(237,23,39,.20);

    transition:.35s;

}

.btn-nav:hover{

    background:var(--primary);

    transform:translateY(-5px);

    box-shadow:0 20px 35px rgba(31,59,109,.20);

}

/*==================================================
MENU HOVER
==================================================*/

nav ul li{

    padding:10px 0;

}

/*==================================================
EFECTO HEADER
==================================================*/

header:hover{

    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

/*==================================================
BOTON MOVIL
==================================================*/

.menu-toggle{

    display:none;

    width:52px;

    height:52px;

    border:none;

    outline:none;

    cursor:pointer;

    border-radius:12px;

    background:var(--primary);

    color:#fff;

    font-size:22px;

    transition:.35s;

}

.menu-toggle:hover{

    background:var(--accent);

}

/*==================================================
BOTONES DEL NAV
==================================================*/

nav .right-side{

    display:flex;

    align-items:center;

    gap:25px;

}

/*==================================================
SEPARADOR OPCIONAL
==================================================*/

.nav-divider{

    width:1px;

    height:30px;

    background:rgba(0,0,0,.08);

}

/*==================================================
ANIMACION LINKS
==================================================*/

nav ul li{

    animation:fadeUp .6s ease both;

}

nav ul li:nth-child(1){animation-delay:.05s;}
nav ul li:nth-child(2){animation-delay:.10s;}
nav ul li:nth-child(3){animation-delay:.15s;}
nav ul li:nth-child(4){animation-delay:.20s;}
nav ul li:nth-child(5){animation-delay:.25s;}

/*==================================================
ESTADO STICKY
==================================================*/

header.scrolled{

    height:auto;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

header.scrolled nav{

    height:82px;

}

header.scrolled .logo img{

    height:64px;

}
/*==================================================
RESPONSIVE 1200px
==================================================*/

@media (max-width:1200px){

    nav{
        width:95%;
    }

    nav ul{
        gap:28px;
    }

    .btn-nav{
        padding:14px 24px;
        font-size:15px;
    }

}

/*==================================================
RESPONSIVE 992px
==================================================*/

@media (max-width:992px){

    .topbar{
        display:none;
    }

    nav{
        width:92%;
        height:85px;
        position:relative;
    }

    .logo img{
        height:62px;
    }

    .btn-nav{
        display:none;
    }

    .menu-toggle{
        display:flex;
        justify-content:center;
        align-items:center;
    }

    .nav-links{

        position:absolute;
        top:85px;
        left:0;

        width:100%;

        background:#fff;

        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;

        gap:28px;

        padding:35px 0;

        border-radius:0 0 20px 20px;

        box-shadow:0 15px 35px rgba(0,0,0,.08);

        transform:translateY(-20px);
        opacity:0;
        visibility:hidden;

        transition:.35s;

    }

    .nav-links.active{

        opacity:1;
        visibility:visible;
        transform:translateY(0);

    }

    .nav-links li{
        width:100%;
        text-align:center;
    }

    .nav-links li a{
        display:block;
        width:100%;
        padding:8px 0;
        font-size:18px;
    }

}
/*=========================================
ABOUT HERO
=========================================*/

.about-hero{

    position:relative;

    padding:170px 0 120px;

    overflow:hidden;

    background:
    radial-gradient(circle at top left,
    rgba(54,163,219,.12),
    transparent 35%),

    radial-gradient(circle at bottom right,
    rgba(237,23,39,.08),
    transparent 30%),

    linear-gradient(135deg,#1F3B6D,#284C87);

}

.about-hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:url("../src/img/pattern.png");

    opacity:.04;

}

.about-hero .container{

    width:90%;

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:58% 42%;

    gap:80px;

    align-items:center;

}


.about-hero-content{

    color:#fff;

}

.about-hero-content .badge{

    display:inline-block;

    padding:12px 24px;

    border-radius:50px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.18);

    backdrop-filter:blur(10px);

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:30px;

}

.about-hero-content h1{

    font-size:62px;

    line-height:1.1;

    margin-bottom:30px;

    font-weight:800;

}

.about-hero-content p{

    font-size:18px;

    line-height:1.9;

    color:rgba(255,255,255,.88);

    margin-bottom:45px;

    max-width:650px;

}

/*=========================================
BOTONES
=========================================*/

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.hero-buttons a{

    text-decoration:none;

}

.btn-yellow{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:18px 38px;

    background:var(--accent);

    color:#fff;

    border-radius:12px;

    font-weight:700;

    transition:.35s;

    box-shadow:0 15px 35px rgba(237,23,39,.35);

}

.btn-yellow:hover{

    transform:translateY(-6px);

    background:#d31220;

}

.btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:18px 38px;

    border:2px solid rgba(255,255,255,.7);

    color:#fff;

    border-radius:12px;

    font-weight:700;

    transition:.35s;

}

.btn-outline:hover{

    background:#fff;

    color:var(--primary);

}

/*=========================================
IMAGEN
=========================================*/

.about-hero-image{

    position:relative;

}

.about-hero-image img{

    width:100%;

    border-radius:25px;

    box-shadow:0 35px 70px rgba(0,0,0,.35);

    transition:.45s;

}

.about-hero-image:hover img{

    transform:scale(1.03);

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px){

.about-hero{

    padding:120px 0 80px;

}

.about-hero .container{

    grid-template-columns:1fr;

    text-align:center;

}

.about-hero-content p{

    margin:auto auto 40px;

}

.hero-buttons{

    justify-content:center;

}

.about-hero-content h1{

    font-size:46px;

}

}

@media(max-width:768px){

.about-hero-content h1{

    font-size:34px;

}

.about-hero-content p{

    font-size:16px;

}

.hero-buttons{

    flex-direction:column;

}

.hero-buttons a{

    width:100%;

}

}

/*=========================================
COMPANY
=========================================*/

.company{

    padding:120px 0;

    background:var(--white);

}

.company .container{

    width:90%;

    max-width:1400px;

    margin:0 auto;

}

.company .about-container{

    display:grid;

    grid-template-columns:55% 45%;

    gap:70px;

    align-items:center;

}

.company .about-image{

    position:relative;

}



.company .about-image img{

    width:100%;

    display:block;

    border-radius:25px;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.company .about-image:hover img{

    transform:scale(1.03);

}

.company .about-content h2{

    font-size:48px;

    color:var(--primary);

    margin-bottom:30px;

    line-height:1.2;

}

.company .about-content p{

    font-size:17px;

    color:var(--gray);

    line-height:1.9;

    margin-bottom:22px;

}

.company .about-stats{

    display:flex;

    gap:25px;

    margin-top:45px;

    flex-wrap:wrap;

}

.company .about-stats div{

    flex:1;

    min-width:170px;

    background:var(--white);

    padding:28px;

    text-align:center;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

    border-top:4px solid var(--secondary);

    transition:var(--transition);

}

.company .about-stats div:hover{

    transform:translateY(-10px);

    border-top-color:var(--accent);

}

.company .about-stats h3{

    font-size:42px;

    color:var(--primary);

    margin-bottom:8px;

}

.company .about-stats span{

    color:var(--gray);

    font-size:15px;

}

.company .section-subtitle{

    display:inline-block;

    color:var(--accent);

    font-size:14px;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:18px;

}

/*=========================================
ANIMATION
=========================================*/

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px){

.about-hero{

    min-height:65vh;

}

.about-hero-content h1{

    font-size:46px;

}

.company .about-container{

    grid-template-columns:1fr;

    gap:60px;

}

.company .about-content{

    text-align:center;

}

.company .about-stats{

    justify-content:center;

}

}

@media(max-width:768px){

.about-hero{

    min-height:60vh;

}

.about-hero-content h1{

    font-size:34px;

}

.about-hero-content p{

    font-size:16px;

}

.about-hero-content .badge{

    font-size:12px;

}

.company{

    padding:80px 0;

}

.company .about-content h2{

    font-size:34px;

}

}
/*=========================================
HISTORY
=========================================*/

.history{

    padding:120px 0;

    background:var(--light);

    position:relative;

}

/*=========================================
HEADER
=========================================*/

.history .section-title{

    text-align:center;

    max-width:850px;

    margin:0 auto 80px;
    color:var(--accent)

}

.history .section-subtitle{

    display:inline-block;

    color:var(--accent);

    font-size:14px;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:20px;

    position:relative;

    padding-bottom:15px;

}

.history .section-subtitle::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:0;

    transform:translateX(-50%);

    width:65px;

    height:3px;

    border-radius:10px;

    background:var(--accent);

}

.history .section-title h2{

    color:var(--primary);

    font-size:52px;

    font-weight:800;

    line-height:1.15;

    margin-bottom:25px;

}

.history .section-title p{

    color:var(--gray);

    font-size:18px;

    line-height:1.9;

}

.history-timeline{

    position:relative;

    max-width:950px;

    margin:80px auto 0;

    padding-left:40px;

}

.history-timeline::before{

    content:"";

    position:absolute;

    left:22px;

    top:0;

    width:4px;

    height:100%;

    background:linear-gradient(var(--secondary),var(--primary));

    border-radius:20px;

}

.history-item{

    position:relative;

    margin-bottom:55px;

    display:flex;

    align-items:flex-start;

    gap:30px;

}

.history-item:last-child{

    margin-bottom:0;

}

.history-year{

    position:absolute;

    left:-5px;

    width:55px;

    height:55px;

    border-radius:50%;

    background:var(--primary);

    color:var(--white);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:12px;

    font-weight:700;

    text-align:center;

    box-shadow:0 12px 30px rgba(31,59,109,.25);

    z-index:2;

}

.history-content{

    margin-left:70px;

    background:var(--white);

    padding:35px;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.history-content:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 55px rgba(0,0,0,.12);

}

.history-content h3{

    color:var(--primary);

    font-size:28px;

    margin-bottom:15px;

}

.history-content p{

    color:var(--gray);

    line-height:1.9;

    font-size:16px;

}

/*=========================================
¿POR QUÉ ELEGIR PROMEFI?
=========================================*/

.why-us{

    padding:120px 0;

    background:var(--light);

}

.why-us .container{

    width:90%;

    max-width:1400px;

    margin:0 auto;

}

.why-us .about-container{

    display:grid;

    grid-template-columns:52% 48%;

    gap:80px;

    align-items:center;

}

.why-us .about-content{

    padding-right:20px;

}

/*=========================================
HEADER
=========================================*/

.why-us .section-subtitle{

    display:inline-block;

    color:var(--accent);

    font-size:14px;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.why-us h2{

    color:var(--primary);

    font-size:52px;

    line-height:1.15;

    font-weight:800;

    margin-bottom:25px;

}

.why-us p{

    color:var(--gray);

    font-size:18px;

    line-height:1.9;

    margin-bottom:40px;

}

/*=========================================
LISTA
=========================================*/

.why-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

.why-list>div{

    display:flex;

    align-items:center;

    gap:18px;

    background:var(--white);

    padding:22px 24px;

    border-radius:18px;

    box-shadow:var(--shadow);

    border-top:4px solid transparent;

    transition:var(--transition);

}

.why-list>div:hover{

    transform:translateY(-8px);

    border-top-color:var(--accent);

    box-shadow:0 25px 50px rgba(0,0,0,.12);

}

.why-list i{

    width:55px;

    height:55px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(54,163,219,.12);

    color:var(--secondary);

    font-size:22px;

    flex-shrink:0;

}

.why-list span{

    color:var(--primary);

    font-weight:600;

    line-height:1.6;

    font-size:16px;

}

/*=========================================
IMAGEN
=========================================*/
.why-us .about-image{

    padding-left:20px;

}
.why-us .about-image img{

    width:100%;

    height:650px;

    object-fit:cover;

    border-radius:25px;

    box-shadow:0 30px 70px rgba(0,0,0,.15);

    transition:.4s;

}

.why-us .about-image:hover img{

    transform:scale(1.02);

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1100px){

.why-us .about-container{

grid-template-columns:1fr;

gap:60px;

}

.why-list{

grid-template-columns:1fr;

}

.why-us .about-content{

text-align:center;

}

}

@media(max-width:768px){

.why-us{

padding:80px 0;

}

.why-us h2{

font-size:36px;

}

.why-us p{

font-size:16px;

}

.why-list>div{

padding:18px;

}

.why-us .about-image img{

height:420px;

}

}
/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px){

.history{

    padding:90px 0;

}

.history-timeline{

    padding-left:20px;

}

.history-content{

    margin-left:60px;

}

.why-us{

    padding:90px 0;

}

.why-us .about-container{

    grid-template-columns:1fr;

}

}

@media(max-width:768px){

.history-timeline::before{

    left:18px;

}

.history-year{

    width:45px;

    height:45px;

    font-size:10px;

}

.history-content{

    margin-left:55px;

    padding:25px;

}

.history-content h3{

    font-size:22px;

}

.why-list div{

    padding:16px;

}

.why-list span{

    font-size:15px;

}

}

/*=========================================
ACREDITACIONES
=========================================*/

.accreditations{

    padding:120px 0;

    background:var(--light);

}

/*=========================================
ACREDITACIONES
=========================================*/

.accreditations{

    padding:120px 0;

    background:var(--light);

}

.accreditations .container{

    width:90%;

    max-width:1400px;

    margin:auto;

}

.accreditations .section-title{

    max-width:900px;

    margin:0 auto 80px;

    text-align:center;
    color:var(--accent);


}

.accreditations .section-subtitle{

    display:inline-block;

    color:var(--accent);

    font-size:14px;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.accreditations .section-title h2{

    color:var(--primary);

    font-size:50px;

    font-weight:800;

    line-height:1.2;

    margin-bottom:25px;

}

.accreditations .section-title p{

    color:var(--gray);

    font-size:18px;

    line-height:1.9;

}

.accreditation-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:70px;

}

.accreditation-card{

    background:var(--white);

    border-radius:var(--radius);

    padding:45px 35px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:var(--transition);

    border-top:5px solid transparent;

}

.accreditation-card:hover{

    transform:translateY(-12px);

    border-top-color:var(--secondary);

    box-shadow:0 25px 55px rgba(0,0,0,.12);

}

.accreditation-card img{

    width:130px;

    height:auto;

    margin-bottom:30px;

    transition:var(--transition);

}

.accreditation-card:hover img{

    transform:scale(1.08);

}

.quality-icon{

    width:110px;

    height:110px;

    margin:auto;

    border-radius:50%;

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    display:flex;

    justify-content:center;

    align-items:center;

    color:var(--white);

    font-size:42px;

    margin-bottom:30px;

    box-shadow:0 20px 45px rgba(31,59,109,.25);

    transition:var(--transition);

}

.accreditation-card:hover .quality-icon{

    transform:rotate(-10deg) scale(1.08);

}

.accreditation-card h3{

    color:var(--primary);

    font-size:26px;

    margin-bottom:18px;

    line-height:1.3;

}

.accreditation-card p{

    color:var(--gray);

    line-height:1.8;

    font-size:16px;

}

/*=========================================
TEAM
=========================================*/

.team{

    padding:120px 0;

    background:var(--white);

}

.team .about-container{

    width:90%;

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

/*=========================================
IMAGEN
=========================================*/

.team .about-image{

    display:flex;

    justify-content:center;

    align-items:center;

}

.team .about-image img{

    width:100%;

    height:620px;

    object-fit:cover;

    border-radius:25px;

    display:block;

    box-shadow:0 30px 70px rgba(0,0,0,.15);

    transition:.4s;

}

.team .about-image:hover img{

    transform:scale(1.02);

}

/*=========================================
CONTENIDO
=========================================*/

.team .about-content{

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.team .section-subtitle{

    color:var(--accent);

    font-size:14px;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.team .about-content h2{

    color:var(--primary);

    font-size:48px;

    line-height:1.2;

    font-weight:800;

    margin-bottom:25px;

}

.team .about-content p{

    color:var(--gray);

    font-size:18px;

    line-height:1.9;

    margin-bottom:35px;

}

/*=========================================
CARACTERÍSTICAS
=========================================*/

.team .about-features{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.team .about-features div{

    display:flex;

    align-items:center;

    gap:18px;

    background:#fff;

    padding:22px 24px;

    border-radius:18px;

    box-shadow:var(--shadow);

    border-left:4px solid var(--secondary);

    transition:.35s;

}

.team .about-features div:hover{

    transform:translateX(10px);

    border-left-color:var(--accent);

    box-shadow:0 25px 50px rgba(0,0,0,.12);

}

.team .about-features i{

    width:58px;

    height:58px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(54,163,219,.12);

    color:var(--secondary);

    font-size:22px;

    flex-shrink:0;

    transition:.35s;

}

.team .about-features div:hover i{

    background:var(--secondary);

    color:var(--white);

    transform:rotate(-10deg);

}

.team .about-features span{

    color:var(--primary);

    font-size:17px;

    font-weight:600;

    line-height:1.6;

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1100px){

.team .about-container{

    grid-template-columns:1fr;

    gap:60px;

}

.team .about-image{

    order:-1;

}

.team .about-content{

    text-align:center;

}

}

@media(max-width:768px){

.team{

    padding:80px 0;

}

.team .about-content h2{

    font-size:36px;

}

.team .about-image img{

    height:420px;

}

}
/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1200px){

.accreditation-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:991px){

.team{

    padding:90px 0;

}

.team .about-container{

    grid-template-columns:1fr;

    gap:60px;

}

.accreditation-grid{

    grid-template-columns:1fr;

}

}

@media(max-width:768px){

.accreditations{

    padding:80px 0;

}

.accreditation-card{

    padding:35px 25px;

}

.accreditation-card img{

    width:100px;

}

.quality-icon{

    width:90px;

    height:90px;

    font-size:34px;

}

.accreditation-card h3{

    font-size:22px;

}

.team .about-features div{

    padding:16px 18px;

}

}

/*=========================================
GALLERY
=========================================*/

.gallery{

    padding:120px 0;

    background:var(--light);

}

.gallery .container{

    width:90%;

    max-width:1400px;

    margin:auto;

}

/*=========================================
TÍTULOS
=========================================*/

.gallery .section-title span{
    display:block;
    
    width:100%;
    
    text-align:center;
    
    color:var(--accent);

    font-size:14px;

    font-weight:700;

    letter-spacing:4px;
    
    text-transform:uppercase;
    
    margin:0 auto 18px;
}
.gallery .section-subtitle{

    display:block;

    width:100%;

    text-align:center;

    color:var(--accent);

    font-size:14px;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

    margin:0 auto 18px;

}
.gallery h2{

    text-align:center;

    color:var(--primary);

    font-size:48px;

    font-weight:800;

    line-height:1.2;

    margin-bottom:25px;

}

.gallery p{

    max-width:900px;

    margin:0 auto;

    text-align:center;

    color:var(--gray);

    font-size:18px;

    line-height:1.9;

}

/*=========================================
GRID
=========================================*/

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:70px;

}

/*=========================================
CARDS
=========================================*/

.gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:22px;

    background:#fff;

    box-shadow:0 20px 50px rgba(0,0,0,.10);

    transition:.35s;

}

.gallery-item:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 70px rgba(0,0,0,.18);

}

/*=========================================
IMAGEN
=========================================*/

.gallery-item img{

    width:100%;

    height:330px;

    object-fit:cover;

    display:block;

    transition:.5s;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

/*=========================================
OVERLAY
=========================================*/

.gallery-item::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(31,59,109,.45),
        rgba(31,59,109,0)
    );

    opacity:0;

    transition:.35s;

}

.gallery-item:hover::after{

    opacity:1;

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1100px){

.gallery-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.gallery{

    padding:80px 0;

}

.gallery h2{

    font-size:36px;

}

.gallery p{

    font-size:16px;

}

.gallery-grid{

    grid-template-columns:1fr;

}

.gallery-item img{

    height:260px;

}

}

/*=========================================
CTA
=========================================*/

.cta{

    padding:120px 0;

    background:
    linear-gradient(rgba(31,59,109,.92),
    rgba(31,59,109,.92)),
    url("../src/img/cta.jpg") center/cover;

    text-align:center;

    color:var(--white);

    position:relative;

}

.cta-content{

    max-width:900px;

    margin:auto;

}

.cta .section-subtitle{

    color:#fff;

    opacity:.85;

}

.cta h2{

    font-size:52px;

    line-height:1.2;

    margin:25px 0;

}

.cta p{

    max-width:760px;

    margin:0 auto 45px;

    font-size:18px;

    line-height:1.9;

    color:rgba(255,255,255,.88);

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.cta .btn-outline{

    border:2px solid rgba(255,255,255,.8);

    color:#fff;

}

.cta .btn-outline:hover{

    background:#fff;

    color:var(--primary);

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1200px){

.gallery-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:991px){

.gallery{

    padding:90px 0;

}

.gallery-grid{

    grid-template-columns:repeat(2,1fr);

}

.gallery-item img{

    height:280px;

}

.cta{

    padding:90px 0;

}

.cta h2{

    font-size:42px;

}

.cta p{

    font-size:17px;

}

}

@media(max-width:768px){

.gallery-grid{

    grid-template-columns:1fr;

}

.gallery-item img{

    height:260px;

}

.cta{

    padding:80px 0;

}

.cta h2{

    font-size:34px;

}

.cta p{

    font-size:16px;

}

.cta-buttons{

    flex-direction:column;

    align-items:center;

}

.cta-buttons a{

    width:100%;

    max-width:320px;

}

}

/*=========================================
FOOTER LOGO
=========================================*/

.footer-logo{

    display:flex;

    align-items:center;

    gap:18px;

    margin-bottom:25px;

}

.footer-logo img{

    width:110px;

    height:auto;

}

.footer-logo h3{

    color:#fff;

    font-size:34px;

    font-weight:700;

    margin:0;

    letter-spacing:1px;

}
/*=========================================
FOOTER
=========================================*/

.footer{

    position:relative;

    background:linear-gradient(135deg,#C8102E 0%,#ED1727 45%,#B40F24 100%);

    color:#fff;

    padding:90px 0 25px;

    overflow:hidden;

}

/*=========================================
MARCA DE AGUA
=========================================*/

.footer-bg-text{

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    font-size:220px;

    font-weight:900;

    letter-spacing:15px;

    color:#ffffff;

    opacity:.03;

    white-space:nowrap;

    pointer-events:none;

    user-select:none;

}

/*=========================================
GRID
=========================================*/

.footer-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.2fr;

    gap:60px;

}

/*=========================================
LOGO
=========================================*/

.footer-about img{

    width:230px;

    margin-bottom:30px;

}

.footer-about p{

    color:rgba(255,255,255,.88);

    line-height:1.9;

    margin-bottom:35px;

    font-size:16px;

}

/*=========================================
BOTON
=========================================*/

.footer-btn{

    display:inline-block;

    padding:18px 38px;

    background:#fff;

    color:#ED1727;

    border-radius:12px;

    font-weight:700;

    transition:.35s;

    box-shadow:0 15px 35px rgba(0,0,0,.18);

}

.footer-btn:hover{

    background:#1F3B6D;

    color:#fff;

    transform:translateY(-6px);

}

/*=========================================
TITULOS
=========================================*/

.footer-links h3,
.footer-contact h3{

    margin-bottom:28px;

    font-size:23px;

    position:relative;

}

.footer-links h3::after,
.footer-contact h3::after{

    content:"";

    display:block;

    width:45px;

    height:3px;

    margin-top:10px;

    background:#36A3DB;

    border-radius:20px;

}

/*=========================================
LINKS
=========================================*/

.footer-links ul{

    list-style:none;

}

.footer-links li{

    margin-bottom:16px;

}

.footer-links a{

    color:rgba(255,255,255,.88);

    transition:.35s;

    display:inline-flex;

    align-items:center;

    gap:10px;

}

.footer-links a::before{

    content:"➜";

    opacity:0;

    transform:translateX(-10px);

    transition:.35s;

}

.footer-links a:hover{

    color:#fff;

    transform:translateX(8px);

}

.footer-links a:hover::before{

    opacity:1;

    transform:translateX(0);

}

/*=========================================
CONTACTO
=========================================*/

.footer-contact div{

    display:flex;

    gap:18px;

    margin-bottom:22px;

    align-items:flex-start;

}

.footer-contact i{

    width:46px;

    height:46px;

    border-radius:50%;

    background:rgba(255,255,255,.12);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    transition:.35s;

}

.footer-contact div:hover i{

    background:#36A3DB;

    transform:rotate(8deg) scale(1.08);

}

.footer-contact span{

    color:rgba(255,255,255,.88);

    line-height:1.8;

}

/*=========================================
REDES
=========================================*/

.footer-social{

    display:flex !important;

    gap:16px;

    margin-top:35px;

}

.footer-social a{

    width:55px;

    height:55px;

    border-radius:50%;

    background:rgba(255,255,255,.10);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:20px;

    transition:.35s;

}

.footer-social a:hover{

    background:#36A3DB;

    transform:translateY(-8px);

}

/*=========================================
BOTTOM
=========================================*/

.footer-bottom{

    position:relative;

    z-index:2;

    margin-top:70px;

    padding-top:30px;

    border-top:1px solid rgba(255,255,255,.15);

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

.footer-bottom p{

    color:rgba(255,255,255,.80);

}

.footer-bottom span{

    color:#fff;

    font-weight:600;

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1200px){

.footer-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.footer{

padding:70px 0 30px;

}

.footer-grid{

grid-template-columns:1fr;

gap:45px;

text-align:center;

}

.footer-about{

display:flex;

flex-direction:column;

align-items:center;

}

.footer-contact div{

justify-content:center;

}

.footer-social{

justify-content:center;

}

.footer-bottom{

justify-content:center;

text-align:center;

}

.footer-bg-text{

font-size:120px;

}

}