/*==================================================
PROMEFI
CALIBRACIÓN DE TEMPERATURA
PARTE 1
Variables - Reset - Base
==================================================*/

/*==================================================
VARIABLES
==================================================*/

:root{

    /* Colores Institucionales */

    --primary:#1F3B6D;
    --secondary:#36A3DB;
    --accent:#ED1727;

    /* Escala de Grises */

    --white:#ffffff;
    --light:#f7f9fc;
    --gray-100:#f3f4f6;
    --gray-200:#e5e7eb;
    --gray-300:#d1d5db;
    --gray:#6b7280;
    --dark:#1f2937;
    --black:#111827;

    /* Bordes */

    --radius-xs:8px;
    --radius-sm:12px;
    --radius-md:18px;
    --radius-lg:24px;
    --radius-xl:30px;

    /* Sombras */

    --shadow-sm:0 6px 20px rgba(0,0,0,.05);
    --shadow:0 15px 40px rgba(0,0,0,.08);
    --shadow-lg:0 25px 70px rgba(0,0,0,.12);

    /* Transiciones */

    --transition:.35s ease;
    --transition-slow:.55s ease;

    /* Contenedor */

    --container:1320px;

}

/*==================================================
RESET
==================================================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

*::before,
*::after{

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:var(--light);

    color:var(--dark);

    overflow-x:hidden;

    line-height:1.7;

}

/*==================================================
SCROLLBAR
==================================================*/

::-webkit-scrollbar{

    width:12px;

}

::-webkit-scrollbar-track{

    background:#edf2f7;

}

::-webkit-scrollbar-thumb{

    background:linear-gradient(
    var(--secondary),
    var(--accent));

    border-radius:50px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary);

}

/*==================================================
IMÁGENES
==================================================*/

img{

    display:block;

    max-width:100%;

    height:auto;

}

/*==================================================
ENLACES
==================================================*/

a{

    text-decoration:none;

    transition:var(--transition);

}

ul{

    list-style:none;

}

/*==================================================
SECCIONES
==================================================*/

section{

    position:relative;

    padding:110px 0;

}

/*==================================================
CONTAINER
==================================================*/

.container{

    width:min(var(--container),92%);

    margin:auto;

}

/*==================================================
TÍTULOS
==================================================*/

.section-title{

    text-align:center;

    margin-bottom:75px;

}

.section-title span{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:10px 22px;

    border-radius:50px;

    background:rgba(54,163,219,.10);

    color:var(--secondary);

    font-size:.85rem;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:22px;

}

.section-title h2{

    font-size:clamp(2.2rem,4vw,3.3rem);

    color:var(--primary);

    font-weight:700;

    line-height:1.2;

    margin-bottom:22px;

}

.section-title p{

    max-width:780px;

    margin:auto;

    color:var(--gray);

    font-size:1.05rem;

}

/*==================================================
MINI TITLE
==================================================*/

.mini-title{

    display:inline-block;

    margin-bottom:18px;

    color:var(--accent);

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

/*==================================================
BOTONES
==================================================*/

.btn-primary{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    background:var(--accent);

    color:#fff;

    padding:18px 40px;

    border-radius:12px;

    font-weight:600;

    transition:var(--transition);

    box-shadow:var(--shadow);

}

.btn-primary:hover{

    transform:translateY(-6px);

    background:#c90d24;

}

.btn-outline{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    border:2px solid #fff;

    color:#fff;

    padding:18px 40px;

    border-radius:12px;

    font-weight:600;

    transition:var(--transition);

}

.btn-outline:hover{

    background:#fff;

    color:var(--primary);

}

.btn-red{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    background:var(--accent);

    color:#fff;

    padding:18px 42px;

    border-radius:12px;

    font-weight:600;

    transition:var(--transition);

}

.btn-red:hover{

    transform:translateY(-6px);

    background:var(--primary);

}

/*==================================================
TARJETAS
==================================================*/

.card{

    background:#fff;

    border-radius:22px;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.card:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow-lg);

}

/*==================================================
EFECTO HOVER IMÁGENES
==================================================*/

.image-box{

    overflow:hidden;

    border-radius:20px;

}

.image-box img{

    transition:.7s;

}

.image-box:hover img{

    transform:scale(1.08);

}

/*==================================================
TEXTOS
==================================================*/

p{

    color:var(--gray);

}

h1,
h2,
h3,
h4{

    color:var(--primary);

}

/*==================================================
ANIMACIONES
==================================================*/

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0);

    }

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@keyframes zoom{

    from{

        transform:scale(.9);

        opacity:0;

    }

    to{

        transform:scale(1);

        opacity:1;

    }

}

/*==================================================
UTILIDADES
==================================================*/

.text-center{

    text-align:center;

}

.shadow{

    box-shadow:var(--shadow);

}

.radius{

    border-radius:22px;

}

.bg-white{

    background:#fff;

}

.bg-light{

    background:var(--light);

}

/*==================================================
PARTE 2A
TOPBAR - HEADER - NAVBAR
==================================================*/

/*==================================================
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;
    }

}

/*=========================================
HERO CONTACTO
=========================================*/

.contact-hero{

    position:relative;

    min-height:80vh;

    display:flex;

    align-items:center;

    background:url("../img/contacto/contacto-hero.jpg") center center/cover no-repeat;

    overflow:hidden;

}

/*=========================================
OVERLAY
=========================================*/

.contact-hero .overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(

        90deg,

        rgba(15,35,70,.92) 0%,

        rgba(15,35,70,.82) 45%,

        rgba(15,35,70,.55) 100%

    );

}

/*=========================================
CONTENIDO
=========================================*/

.contact-hero-content{

    position:relative;

    z-index:2;

    max-width:760px;

    color:#fff;

    padding:120px 0;

}

/*=========================================
BADGE
=========================================*/

.contact-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,.20);

    backdrop-filter:blur(10px);

    color:#fff;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:28px;

}

/*=========================================
TITULO
=========================================*/

.contact-hero-content h1{

    font-size:clamp(2.8rem,5vw,4.6rem);

    line-height:1.15;

    font-weight:800;

    margin-bottom:28px;

    color:#fff;

}

/*=========================================
TEXTO
=========================================*/

.contact-hero-content p{

    max-width:650px;

    font-size:18px;

    line-height:1.9;

    color:rgba(255,255,255,.92);

    margin-bottom:45px;

}

/*=========================================
BOTONES
=========================================*/

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

/*=========================================
BOTON AMARILLO
=========================================*/

.btn-yellow{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border-radius:50px;

    background:var(--accent);

    color:#fff;

    font-weight:700;

    text-decoration:none;

    transition:.35s;

}

.btn-yellow:hover{

    transform:translateY(-4px);

    background:var(--accent);

    box-shadow:0 18px 35px var(--accent);

}

/*=========================================
BOTON OUTLINE
=========================================*/

.btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border-radius:50px;

    border:2px solid rgba(255,255,255,.75);

    color:#fff;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.btn-outline:hover{

    background:#fff;

    color:#1F3B6D;

    transform:translateY(-4px);

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:992px){

.contact-hero{

min-height:70vh;

}

.contact-hero-content{

text-align:center;

margin:auto;

padding:100px 0;

}

.contact-hero-content p{

margin-left:auto;

margin-right:auto;

}

.hero-buttons{

justify-content:center;

}

}

@media(max-width:768px){

.contact-hero{

min-height:65vh;

}

.contact-hero-content{

padding:90px 0;

}

.contact-hero-content .badge{

font-size:11px;

padding:10px 18px;

letter-spacing:1px;

}

.contact-hero-content h1{

font-size:2.4rem;

}

.contact-hero-content p{

font-size:16px;

}

.hero-buttons{

flex-direction:column;

}

.btn-yellow,
.btn-outline{

width:100%;

}

}

@media(max-width:480px){

.contact-hero-content{

padding:70px 0;

}

.contact-hero-content h1{

font-size:2rem;

}

.contact-hero-content p{

font-size:15px;

line-height:1.8;

}

}



/*=========================================
SOLICITUD DE SERVICIO
=========================================*/

.request-service{

    padding:100px 0;

    background:#f8fbff;

    position:relative;

    overflow:hidden;

}

.request-service::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    border-radius:50%;

    background:rgba(54,163,219,.05);

    top:-200px;

    right:-180px;

}

.request-service::after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    border-radius:50%;

    background:rgba(237,23,39,.04);

    bottom:-150px;

    left:-150px;

}

/*=========================================
FORMULARIO
=========================================*/

#quotationForm{

    position:relative;

    z-index:2;

    max-width:1280px;
    width:95%;
    margin:70px auto;


}

/*=========================================
TARJETA
=========================================*/

.form-card{

    background:#fff;

    border-radius:25px;

    padding:40px;

    box-shadow:0 25px 70px rgba(0,0,0,.08);

    border:1px solid rgba(31,59,109,.08);

}

.form-card h3{

    color:#1F3B6D;

    font-size:34px;

    margin-bottom:15px;

}

.form-card>p{

    color:#667085;

    line-height:1.9;

    margin-bottom:28px;

}

/*=========================================
BARRA DE PROGRESO
=========================================*/

.progress-wrapper{

    position:relative;

    max-width:950px;

    margin:0 auto 60px;

}

.progress-bar{

    width:100%;

    height:6px;

    background:#dbe6f4;

    border-radius:20px;

    overflow:hidden;

}

.progress-fill{

    width:25%;

    height:100%;

    background:linear-gradient(
        90deg,
        #36A3DB,
        #1F3B6D
    );

    transition:.4s;

}

/*=========================================
PASOS
=========================================*/

.steps{

    display:flex;

    justify-content:space-between;

    margin-top:25px;

}

.step{

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:12px;

}

.step span{

    width:55px;

    height:55px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#dbe6f4;

    color:#1F3B6D;

    font-weight:700;

    transition:.35s;

}

.step p{

    font-size:14px;

    color:#667085;

    font-weight:600;

}

.step.active span{

    background:linear-gradient(
        135deg,
        #36A3DB,
        #1F3B6D
    );

    color:#fff;

    box-shadow:0 12px 30px rgba(31,59,109,.25);

}

.step.active p{

    color:#1F3B6D;

}

/*=========================================
PASOS DEL FORMULARIO
=========================================*/

.form-step{

    display:none;

    opacity:0;

    transform:translateX(30px);

    transition:all .4s ease;

}

.form-step.active{

    display:block;

    opacity:1;

    transform:translateX(0);

}

/*=========================================
GRID DEL FORMULARIO
=========================================*/

.form-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

    margin-bottom:40px;

}

.form-group{

    display:flex;

    flex-direction:column;

}

.form-group.full-width{

    grid-column:1/-1;

}

/*=========================================
LABELS
=========================================*/

.form-group label{

    color:#1F3B6D;

    font-size:15px;

    font-weight:600;

    margin-bottom:10px;

}

/*=========================================
INPUTS
=========================================*/

.form-group input,
.form-group select,
.form-group textarea{

    width:100%;

    padding:18px 22px;
font-size:16px;

    border:1px solid #d9e2ec;

    border-radius:14px;

    background:#fff;

    font-size:15px;

    color:#202020;

    outline:none;

    transition:.35s;

    font-family:inherit;

}

/*=========================================
PLACEHOLDER
=========================================*/

.form-group input::placeholder,
.form-group textarea::placeholder{

    color:#98a2b3;

}

/*=========================================
FOCUS
=========================================*/

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{

    border-color:#36A3DB;

    box-shadow:0 0 0 4px rgba(54,163,219,.15);

}

/*=========================================
TEXTAREA
=========================================*/

.form-group textarea{

    resize:vertical;

    min-height:160px;

}

/*=========================================
BOTONES
=========================================*/

.buttons{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    margin-top:20px;

}

.btn-next,
.btn-prev,
.btn-send{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:16px 34px;

    border:none;

    border-radius:50px;

    cursor:pointer;

    font-size:15px;

    font-weight:600;

    transition:.35s;

    text-decoration:none;

}

/*=========================================
BOTÓN SIGUIENTE
=========================================*/

.btn-next{

    background:linear-gradient(
        135deg,
        #36A3DB,
        #1F3B6D
    );

    color:#fff;

    margin-left:auto;

}

.btn-next:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 30px rgba(31,59,109,.25);

}

/*=========================================
BOTÓN ANTERIOR
=========================================*/

.btn-prev{

    background:#eef4fb;

    color:#1F3B6D;

}

.btn-prev:hover{

    background:#dce9f7;

}

/*=========================================
BOTÓN ENVIAR
=========================================*/

.btn-send{

    background:linear-gradient(
        135deg,
        #ED1727,
        #C8102E
    );

    color:#fff;

}

.btn-send:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 30px rgba(237,23,39,.25);

}

/*=========================================
BOTÓN AGREGAR EQUIPO
=========================================*/

.btn-add-equipo{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    padding:15px 28px;

    margin:25px 0;

    border:none;

    border-radius:50px;

    background:linear-gradient(
        135deg,
        #36A3DB,
        #1F3B6D
    );

    color:#fff;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    transition:.35s;

    box-shadow:0 10px 25px rgba(31,59,109,.20);

}

.btn-add-equipo i{

    width:30px;

    height:30px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.18);

    font-size:13px;

}

.btn-add-equipo:hover{

    transform:translateY(-3px);

    box-shadow:0 18px 35px rgba(31,59,109,.28);

}

.btn-add-equipo:active{

    transform:scale(.97);

}

/*=========================================
BOTÓN ELIMINAR EQUIPO
=========================================*/

.btn-remove-equipo{

    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:10px 18px;

    border:none;
    border-radius:12px;

    background:#ef4444;
    color:#fff;

    font-size:.9rem;
    font-weight:600;

    cursor:pointer;

    transition:.30s;

    box-shadow:0 8px 20px rgba(239,68,68,.25);

}

.btn-remove-equipo:hover{

    background:#dc2626;

    transform:translateY(-2px);

    box-shadow:0 12px 25px rgba(220,38,38,.35);

}

.btn-remove-equipo i{

    font-size:15px;

}

/*=========================================
RESPONSIVE BOTONES EQUIPOS
=========================================*/

@media(max-width:768px){

    .equipment-actions{

        display:flex;

        justify-content:center;

        width:100%;

    }

    .btn-add-equipo{

        width:100%;

        padding:16px 20px;

        font-size:15px;

    }

    .btn-remove-equipo{

        width:100%;

        justify-content:center;

        padding:14px 18px;

        font-size:14px;

        margin-top:15px;

    }

    .equipment-header{

        display:flex;

        flex-direction:column;

        align-items:flex-start;

        gap:15px;

    }

}

@media(max-width:576px){

    .btn-add-equipo{

        font-size:14px;

        padding:15px;

    }

    .btn-add-equipo i{

        width:28px;

        height:28px;

        font-size:12px;

    }

    .btn-remove-equipo{

        font-size:13px;

        padding:13px 15px;

    }

    .btn-remove-equipo i{

        font-size:14px;

    }

}

@media(max-width:400px){

    .btn-add-equipo{

        gap:8px;

        font-size:13px;

    }

    .btn-remove-equipo{

        font-size:12px;

    }

}

/*=========================================
UPLOAD AREA
=========================================*/

.upload-area{

    border:2px dashed #36A3DB;

    border-radius:18px;

    padding:45px 30px;

    text-align:center;

    background:#f8fbff;

    cursor:pointer;

    transition:.35s;

    margin:30px 0;

}

.upload-area:hover{

    background:#eef7ff;

    border-color:#1F3B6D;

    transform:translateY(-2px);

}

.upload-area.drag{

    background:#e3f3ff;

    border-color:#1F3B6D;

}

.upload-area i{

    font-size:55px;

    color:#36A3DB;

    margin-bottom:18px;

}

.upload-area h4{

    color:#1F3B6D;

    font-size:22px;

    margin-bottom:8px;

}

.upload-area p{

    color:#6b7280;

    margin-bottom:18px;

}

.upload-area input{

    display:none;

}

/*=========================================
RESPONSIVE UPLOAD AREA
=========================================*/

@media (max-width:992px){

    .upload-area{

        padding:40px 25px;

    }

    .upload-area i{

        font-size:48px;

    }

    .upload-area h4{

        font-size:20px;

    }

    .upload-area p{

        font-size:15px;

        line-height:1.6;

    }

}

@media (max-width:768px){

    .upload-area{

        padding:35px 20px;

        border-radius:16px;

        margin:25px 0;

    }

    .upload-area i{

        font-size:42px;

        margin-bottom:15px;

    }

    .upload-area h4{

        font-size:18px;

        margin-bottom:8px;

    }

    .upload-area p{

        font-size:14px;

        margin-bottom:15px;

    }

}

@media (max-width:576px){

    .upload-area{

        padding:28px 15px;

        border-radius:14px;

    }

    .upload-area i{

        font-size:36px;

    }

    .upload-area h4{

        font-size:17px;

    }

    .upload-area p{

        font-size:13px;

        line-height:1.5;

    }

}

@media (max-width:400px){

    .upload-area{

        padding:22px 12px;

    }

    .upload-area i{

        font-size:32px;

    }

    .upload-area h4{

        font-size:16px;

    }

    .upload-area p{

        font-size:12px;

    }

}
/*=========================================
TIPOS DE ARCHIVOS
=========================================*/

.accepted-files{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

    margin:25px 0;

}

.accepted-item{

    display:flex;

    align-items:center;

    gap:10px;

    padding:12px 18px;

    background:#f8fbff;

    border:1px solid #dbe6f3;

    border-radius:12px;

    color:#1F3B6D;

    font-weight:600;

    transition:.30s;

}

.accepted-item:hover{

    background:#eef7ff;

    border-color:#36A3DB;

    transform:translateY(-2px);

    box-shadow:0 10px 20px rgba(31,59,109,.10);

}

.accepted-item i{

    width:36px;

    height:36px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#36A3DB;

    color:#fff;

    font-size:16px;

}

/*=========================================
RESPONSIVE TIPOS DE ARCHIVOS
=========================================*/

@media(max-width:768px){

    .accepted-files{

        display:grid;

        grid-template-columns:repeat(2,1fr);

        gap:12px;

    }

    .accepted-item{

        justify-content:flex-start;

        font-size:14px;

        padding:12px;

    }

}

@media(max-width:480px){

    .accepted-files{

        grid-template-columns:1fr;

    }

    .accepted-item{

        width:100%;

    }

}

/*==================================================
CONFIRMACIÓN - ENCABEZADO PROFESIONAL
==================================================*/

.confirmation-card{

    max-width:1100px;

    margin:0 auto;

    padding:50px;

    background:#ffffff;

    border-radius:24px;

    border:1px solid rgba(31,59,109,.08);

    box-shadow:0 20px 60px rgba(0,0,0,.08);

}

/*==================================================
ENCABEZADO
==================================================*/

.confirmation-header{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:35px;

    padding-bottom:30px;

    margin-bottom:35px;

    border-bottom:3px solid #1F3B6D;

}

.confirmation-logo{

    flex-shrink:0;

}

.confirmation-logo img{

    width:260px;

    max-width:100%;

    display:block;

}

.confirmation-header h3{

    margin:0;

    color:#1F3B6D;

    font-size:38px;

    font-weight:800;

    line-height:1.2;

}

.confirmation-header p{

    margin-top:10px;

    color:#6B7280;

    font-size:15px;

    line-height:1.7;

}

/*==================================================
FOLIO - FECHA - ESTADO
==================================================*/

.confirmation-top{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

    margin-bottom:40px;

}

.confirmation-top > div{

    background:#F8FBFF;

    border-left:5px solid #1F3B6D;

    border-radius:16px;

    padding:20px;

    box-shadow:0 8px 20px rgba(0,0,0,.05);

}

.confirmation-top strong{

    display:block;

    margin-bottom:8px;

    color:#6B7280;

    font-size:13px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:.8px;

}

.confirmation-top span{

    display:block;

    color:#1F3B6D;

    font-size:18px;

    font-weight:700;

}

/*==================================================
ESTADO
==================================================*/

.status{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:8px 18px;

    border-radius:50px;

    font-size:14px;

    font-weight:700;

}

.status.pending{

    background:#FFF8E5;

    color:#C98A00;

    border:1px solid #FFD76D;

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:992px){

    .confirmation-card{

        padding:35px;

    }

    .confirmation-header{

        flex-direction:column;

        text-align:center;

        gap:25px;

    }

    .confirmation-logo img{

        width:220px;

    }

    .confirmation-header h3{

        font-size:32px;

    }

    .confirmation-top{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .confirmation-card{

        padding:28px 22px;

        border-radius:18px;

    }

    .confirmation-logo img{

        width:180px;

    }

    .confirmation-header{

        margin-bottom:25px;

        padding-bottom:20px;

    }

    .confirmation-header h3{

        font-size:27px;

    }

    .confirmation-header p{

        font-size:14px;

    }

    .confirmation-top{

        gap:15px;

    }

    .confirmation-top > div{

        padding:18px;

    }

}

@media(max-width:480px){

    .confirmation-card{

        padding:22px 16px;

    }

    .confirmation-logo img{

        width:150px;

    }

    .confirmation-header h3{

        font-size:23px;

    }

    .confirmation-header p{

        font-size:13px;

    }

    .confirmation-top strong{

        font-size:12px;

    }

    .confirmation-top span{

        font-size:16px;

    }

    .status{

        width:100%;

    }

}

/*==================================================
SECCIONES DEL RESUMEN
==================================================*/

.summary-section{

    margin-bottom:35px;

    background:#ffffff;

    border:1px solid #e6edf5;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

/*==================================================
TÍTULO DE LA SECCIÓN
==================================================*/

.summary-section h4{

    display:flex;

    align-items:center;

    gap:12px;

    margin:0;

    padding:18px 25px;

    background:linear-gradient(
        90deg,
        #1F3B6D,
        #29508d
    );

    color:#fff;

    font-size:18px;

    font-weight:700;

    letter-spacing:.3px;

}

/*==================================================
GRID
==================================================*/

.summary-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:22px;

    padding:25px;

}

/*==================================================
ITEM
==================================================*/

.summary-item{

    display:flex;

    flex-direction:column;

    gap:8px;

    padding:18px;

    background:#f8fbff;

    border:1px solid #dbe6f4;

    border-radius:14px;

    transition:.30s;

}

.summary-item:hover{

    border-color:#36A3DB;

    box-shadow:0 10px 22px rgba(31,59,109,.10);

    transform:translateY(-2px);

}

/*==================================================
LABEL
==================================================*/

.summary-item label{

    margin:0;

    color:#6b7280;

    font-size:12px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1px;

}

/*==================================================
VALOR
==================================================*/

.summary-item span{

    color:#202020;

    font-size:16px;

    font-weight:600;

    line-height:1.7;

    word-break:break-word;

}

/*==================================================
FULL WIDTH
==================================================*/

.summary-item.full{

    grid-column:1/-1;

}

/*==================================================
RESPONSIVE SUMMARY
==================================================*/

@media(max-width:992px){

    .summary-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .summary-section{

        border-radius:16px;

    }

    .summary-section h4{

        padding:16px 20px;

        font-size:17px;

    }

    .summary-grid{

        padding:20px;

        gap:18px;

    }

    .summary-item{

        padding:16px;

    }

}

@media(max-width:480px){

    .summary-section{

        margin-bottom:25px;

    }

    .summary-section h4{

        font-size:16px;

        padding:15px 18px;

    }

    .summary-grid{

        padding:16px;

    }

    .summary-item{

        padding:14px;

    }

    .summary-item label{

        font-size:11px;

    }

    .summary-item span{

        font-size:15px;

    }

}

/*==================================================
EQUIPOS REGISTRADOS
==================================================*/

#summaryEquipos{

    padding:25px;

}

/*==================================================
TARJETA DEL EQUIPO
==================================================*/

.summary-equipment{

    background:#ffffff;

    border:1px solid #dce7f3;

    border-radius:18px;

    overflow:hidden;

    margin-bottom:25px;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

    transition:.30s;

}

.summary-equipment:hover{

    transform:translateY(-3px);

    box-shadow:0 18px 35px rgba(0,0,0,.08);

}

/*==================================================
ENCABEZADO
==================================================*/

.summary-equipment-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 24px;

    background:linear-gradient(
        90deg,
        #1F3B6D,
        #29508d
    );

    color:#fff;

}

.summary-equipment-header h5{

    margin:0;

    font-size:18px;

    font-weight:700;

}

.summary-equipment-number{

    background:#36A3DB;

    color:#fff;

    padding:8px 16px;

    border-radius:30px;

    font-size:13px;

    font-weight:700;

}

/*==================================================
GRID
==================================================*/

.summary-equipment-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    padding:24px;

}

/*==================================================
ITEM
==================================================*/

.summary-equipment-item{

    background:#f8fbff;

    border:1px solid #dbe6f3;

    border-radius:14px;

    padding:16px;

}

.summary-equipment-item label{

    display:block;

    margin-bottom:8px;

    color:#6b7280;

    text-transform:uppercase;

    font-size:12px;

    letter-spacing:.8px;

    font-weight:700;

}

.summary-equipment-item span{

    color:#202020;

    font-size:15px;

    font-weight:600;

    line-height:1.6;

}

/*==================================================
OBSERVACIONES
==================================================*/

.summary-equipment-item.full{

    grid-column:1/-1;

}

/*==================================================
RESPONSIVE EQUIPOS
==================================================*/

@media(max-width:992px){

.summary-equipment-grid{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.summary-equipment-header{

flex-direction:column;

align-items:flex-start;

gap:12px;

}

.summary-equipment-grid{

padding:18px;

}

}

@media(max-width:480px){

.summary-equipment-header{

padding:16px;

}

.summary-equipment-header h5{

font-size:16px;

}

.summary-equipment-item{

padding:14px;

}

.summary-equipment-item label{

font-size:11px;

}

.summary-equipment-item span{

font-size:14px;

}

}

/*==================================================
ARCHIVOS ADJUNTOS
==================================================*/

#summaryFiles{

    display:flex;

    flex-direction:column;

    gap:15px;

    padding:25px;

}

.summary-file{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:18px;

    padding:18px 22px;

    background:#f8fbff;

    border:1px solid #dce7f3;

    border-radius:16px;

    transition:.30s;

}

.summary-file:hover{

    border-color:#36A3DB;

    transform:translateY(-2px);

    box-shadow:0 12px 25px rgba(31,59,109,.08);

}

.summary-file-left{

    display:flex;

    align-items:center;

    gap:15px;

}

.summary-file-left i{

    width:46px;

    height:46px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        #36A3DB,
        #1F3B6D
    );

    color:#fff;

    font-size:18px;

    flex-shrink:0;

}

.summary-file-info{

    display:flex;

    flex-direction:column;

}

.summary-file-info strong{

    color:#1F3B6D;

    font-size:15px;

    font-weight:700;

}

.summary-file-info span{

    color:#6b7280;

    font-size:13px;

    margin-top:4px;

}

.summary-file-size{

    background:#eef4fb;

    color:#1F3B6D;

    padding:7px 14px;

    border-radius:30px;

    font-size:12px;

    font-weight:700;

}

.summary-empty{

    text-align:center;

    padding:45px 20px;

    border:2px dashed #dbe6f3;

    border-radius:18px;

    background:#fafcff;

}

.summary-empty i{

    font-size:55px;

    color:#c5d2e4;

    margin-bottom:15px;

}

.summary-empty h4{

    color:#1F3B6D;

    margin-bottom:8px;

}

.summary-empty p{

    color:#6b7280;

}

/*==================================================
RESPONSIVE ARCHIVOS
==================================================*/

@media(max-width:768px){

    .summary-file{

        flex-direction:column;

        align-items:flex-start;

    }

    .summary-file-size{

        align-self:flex-end;

    }

}

@media(max-width:480px){

    .summary-file{

        padding:15px;

    }

    .summary-file-left{

        gap:12px;

    }

    .summary-file-left i{

        width:40px;

        height:40px;

        font-size:16px;

    }

    .summary-file-info strong{

        font-size:14px;

    }

    .summary-file-info span{

        font-size:12px;

    }

}

/*==================================================
COMENTARIOS ADICIONALES
==================================================*/

#summaryComentarios{

    padding:25px;

    background:#f8fbff;

    border:1px solid #dbe6f4;

    border-radius:18px;

    color:#374151;

    line-height:1.9;

    font-size:15px;

    min-height:110px;

    white-space:pre-line;

}

/*==================================================
ALERTA FINAL
==================================================*/

.confirmation-alert{

    display:flex;

    align-items:flex-start;

    gap:25px;

    margin-top:40px;

    padding:30px;

    border-radius:20px;

    background:linear-gradient(
        135deg,
        #f8fbff,
        #eef7ff
    );

    border:1px solid rgba(54,163,219,.20);

    box-shadow:0 15px 40px rgba(0,0,0,.05);

}

/*==================================================
ICONO
==================================================*/

.confirmation-alert i{

    width:70px;

    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        #22c55e,
        #16a34a
    );

    color:#fff;

    font-size:30px;

    flex-shrink:0;

}

/*==================================================
TEXTOS
==================================================*/

.confirmation-alert h4{

    margin:0 0 12px;

    color:#1F3B6D;

    font-size:22px;

    font-weight:700;

}

.confirmation-alert p{

    margin:0 0 20px;

    color:#6b7280;

    line-height:1.8;

}

/*==================================================
LISTA
==================================================*/

.confirmation-alert ul{

    list-style:none;

    padding:0;

    margin:0;

}

.confirmation-alert li{

    display:flex;

    align-items:center;

    gap:12px;

    padding:12px 0;

    color:#374151;

    font-weight:500;

    border-bottom:1px dashed #dbe6f4;

}

.confirmation-alert li:last-child{

    border-bottom:none;

}

/*==================================================
CHECK
==================================================*/

.confirmation-alert li::before{

    content:"✔";

    width:28px;

    height:28px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#22c55e;

    color:#fff;

    font-size:13px;

    font-weight:bold;

    flex-shrink:0;

}

/*==================================================
RESPONSIVE ALERTA
==================================================*/

@media(max-width:992px){

    .confirmation-alert{

        flex-direction:column;

        align-items:center;

        text-align:center;

    }

}

@media(max-width:768px){

    .confirmation-alert{

        padding:22px;

        gap:20px;

    }

    .confirmation-alert i{

        width:60px;

        height:60px;

        font-size:24px;

    }

    .confirmation-alert h4{

        font-size:20px;

    }

    .confirmation-alert p{

        font-size:14px;

    }

    .confirmation-alert li{

        align-items:flex-start;

        text-align:left;

    }

}

@media(max-width:480px){

    .confirmation-alert{

        padding:18px;

        border-radius:16px;

    }

    .confirmation-alert i{

        width:55px;

        height:55px;

        font-size:22px;

    }

    .confirmation-alert h4{

        font-size:18px;

    }

    .confirmation-alert p{

        font-size:13px;

    }

    .confirmation-alert li{

        font-size:13px;

        gap:10px;

    }

    .confirmation-alert li::before{

        width:24px;

        height:24px;

        font-size:11px;

    }

}

/*==================================================
BOTONES CONFIRMACIÓN
==================================================*/

.confirmation-card .buttons{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    margin-top:45px;

    padding-top:30px;

    border-top:1px solid #e8edf4;

}

/*==================================================
BOTÓN ANTERIOR
==================================================*/

.confirmation-card .btn-prev{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:16px 34px;

    border:2px solid #dbe6f4;

    border-radius:50px;

    background:#ffffff;

    color:#1F3B6D;

    font-size:15px;

    font-weight:700;

    cursor:pointer;

    transition:.35s;

}

.confirmation-card .btn-prev:hover{

    background:#f4f8fd;

    border-color:#36A3DB;

    transform:translateY(-2px);

    box-shadow:0 12px 25px rgba(31,59,109,.12);

}

/*==================================================
BOTÓN ENVIAR
==================================================*/

.confirmation-card .btn-send{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    padding:18px 40px;

    border:none;

    border-radius:50px;

    background:linear-gradient(
        135deg,
        #1F3B6D,
        #36A3DB
    );

    color:#fff;

    font-size:16px;

    font-weight:700;

    letter-spacing:.3px;

    cursor:pointer;

    transition:.35s;

    box-shadow:0 18px 35px rgba(31,59,109,.25);

}

.confirmation-card .btn-send:hover{

    transform:translateY(-3px);

    box-shadow:0 25px 45px rgba(31,59,109,.35);

}

.confirmation-card .btn-send:active{

    transform:scale(.98);

}

/*==================================================
ICONOS
==================================================*/

.confirmation-card .btn-send i,
.confirmation-card .btn-prev i{

    font-size:15px;

}

/*==================================================
RESPONSIVE BOTONES
==================================================*/

@media(max-width:768px){

    .confirmation-card .buttons{

        flex-direction:column-reverse;

        gap:18px;

    }

    .confirmation-card .btn-prev,
    .confirmation-card .btn-send{

        width:100%;

        justify-content:center;

    }

}

@media(max-width:480px){

    .confirmation-card .btn-prev,
    .confirmation-card .btn-send{

        padding:16px;

        font-size:15px;

    }

}

/*==================================================
RESPONSIVE BOTONES
==================================================*/

@media(max-width:768px){

    .confirmation-card .buttons{

        flex-direction:column-reverse;

        gap:18px;

    }

    .confirmation-card .btn-prev,
    .confirmation-card .btn-send{

        width:100%;

        justify-content:center;

    }

}

@media(max-width:480px){

    .confirmation-card .btn-prev,
    .confirmation-card .btn-send{

        padding:16px;

        font-size:15px;

    }

}

/*==================================================
OPTIMIZACIÓN PARA PDF
==================================================*/

.confirmation-card{

    page-break-inside:avoid;

}

.summary-section{

    page-break-inside:avoid;

    break-inside:avoid;

}

.summary-equipment{

    page-break-inside:avoid;

    break-inside:avoid;

}

.summary-file{

    page-break-inside:avoid;

    break-inside:avoid;

}

.confirmation-alert{

    page-break-inside:avoid;

    break-inside:avoid;

}

.confirmation-header{

    page-break-after:avoid;

}

.summary-grid{

    page-break-inside:avoid;

}

.summary-equipment-grid{

    page-break-inside:avoid;

}

/*==================================================
TIPOGRAFÍA
==================================================*/

.confirmation-card{

    font-family:"Montserrat",Arial,sans-serif;

    color:#202020;

    line-height:1.7;

}

/*==================================================
TABLAS Y CONTENIDO
==================================================*/

.summary-item,
.summary-equipment-item{

    word-break:break-word;

}

.summary-item span,
.summary-equipment-item span{

    white-space:pre-line;

}

/*==================================================
IMÁGENES
==================================================*/

.confirmation-logo img{

    max-width:100%;

    height:auto;

}

/*==================================================
COLORES
==================================================*/

*{

    -webkit-print-color-adjust:exact;

    print-color-adjust:exact;

}

/*==================================================
PRINT
==================================================*/

@media print{

    body{

        background:#ffffff !important;

    }

    .confirmation-card{

        width:100%;

        margin:0;

        padding:0;

        border:none;

        box-shadow:none;

    }

    .buttons{

        display:none;

    }

    .progress-wrapper{

        display:none;

    }

    .topbar{

        display:none;

    }

    header{

        display:none;

    }

    footer{

        display:none;

    }

    nav{

        display:none;

    }

    .request-service{

        padding:0;

        background:#ffffff;

    }

    .summary-section{

        margin-bottom:20px;

    }

}

/*==================================================
ARCHIVOS ADJUNTOS
==================================================*/

#summaryFiles{

    display:flex;

    flex-direction:column;

    gap:16px;

    margin-top:20px;

}

/*==================================================
TARJETA
==================================================*/

.summary-file{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    padding:18px 22px;

    background:#ffffff;

    border:1px solid #e7edf5;

    border-left:5px solid #36A3DB;

    border-radius:16px;

    transition:.30s;

    box-shadow:0 10px 30px rgba(31,59,109,.06);

}

.summary-file:hover{

    transform:translateY(-3px);

    box-shadow:0 18px 35px rgba(31,59,109,.12);

}

/*==================================================
INFORMACIÓN
==================================================*/

.summary-file-info{

    display:flex;

    align-items:center;

    gap:18px;

    flex:1;

}

/*==================================================
ICONO
==================================================*/

.summary-file-icon{

    width:60px;

    height:60px;

    border-radius:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#eef7ff;

    color:#36A3DB;

    flex-shrink:0;

}

.summary-file-icon i{

    font-size:28px;

}

/*==================================================
NOMBRE
==================================================*/

.summary-file-name{

    font-size:16px;

    font-weight:700;

    color:#1F3B6D;

    word-break:break-word;

}

/*==================================================
TAMAÑO
==================================================*/

.summary-file-size{

    margin-top:6px;

    font-size:13px;

    color:#7b8794;

}

/*==================================================
TIPO
==================================================*/

.summary-file-type{

    display:inline-block;

    margin-top:8px;

    padding:5px 12px;

    border-radius:20px;

    background:#eef7ff;

    color:#36A3DB;

    font-size:12px;

    font-weight:600;

}

/*==================================================
BOTÓN DESCARGAR
==================================================*/

.summary-download{

    width:48px;

    height:48px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        #36A3DB,
        #1F3B6D
    );

    color:#fff;

    transition:.30s;

    cursor:pointer;

    flex-shrink:0;

}

.summary-download i{

    font-size:18px;

}

.summary-download:hover{

    transform:scale(1.08);

    box-shadow:0 10px 25px rgba(31,59,109,.25);

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:768px){

    .summary-file{

        flex-direction:column;

        align-items:flex-start;

        padding:18px;

    }

    .summary-file-info{

        width:100%;

    }

    .summary-download{

        align-self:flex-end;

    }

}

@media(max-width:480px){

    .summary-file{

        gap:15px;

        padding:15px;

    }

    .summary-file-info{

        gap:14px;

    }

    .summary-file-icon{

        width:52px;

        height:52px;

    }

    .summary-file-icon i{

        font-size:24px;

    }

    .summary-file-name{

        font-size:14px;

    }

    .summary-file-size{

        font-size:12px;

    }

    .summary-download{

        width:42px;

        height:42px;

    }

}

.summary-file-icon{

    width:60px;

    height:60px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:16px;

    background:#eef7ff;

    color:#36A3DB;

    flex-shrink:0;

}

.summary-file-icon i{

    font-size:28px;

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:992px){

.form-card{

padding:40px;

}

.form-grid{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.form-card{

padding:30px 24px;

}

.form-card h3{

font-size:28px;

}

.buttons{

flex-direction:column-reverse;

}

.btn-next,
.btn-prev,
.btn-send{

width:100%;

}

}

@media(max-width:480px){

.form-card{

padding:24px 18px;

}

.form-group input,
.form-group select,
.form-group textarea{

padding:14px 16px;

font-size:14px;

}

.form-card h3{

font-size:24px;

}

}

/*=========================================
SERVICIOS
=========================================*/

.service-options{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

    margin:40px 0;

}

/*=========================================
LABEL
=========================================*/

.service-option{

    position:relative;

    cursor:pointer;

}

.service-option input{

    display:none;

}

/*=========================================
TARJETA
=========================================*/

.option-card{

    background:#fff;

    border:2px solid #e5e7eb;

    border-radius:20px;

    padding:35px 25px;

    text-align:center;

    transition:.35s;

    height:100%;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

/*=========================================
ICONO
=========================================*/

.option-card i{

    width:80px;

    height:80px;

    margin-bottom:22px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(
        135deg,
        #36A3DB,
        #1F3B6D
    );

    color:#fff;

    font-size:34px;

    transition:.35s;

}

/*=========================================
TITULO
=========================================*/

.option-card h4{

    color:#1F3B6D;

    font-size:20px;

    margin-bottom:12px;

    line-height:1.4;

}

/*=========================================
DESCRIPCIÓN
=========================================*/

.option-card p{

    color:#667085;

    font-size:15px;

    line-height:1.7;

}

/*=========================================
HOVER
=========================================*/

.option-card:hover{

    transform:translateY(-8px);

    border-color:#36A3DB;

    box-shadow:0 25px 50px rgba(31,59,109,.12);

}

.option-card:hover i{

    transform:scale(1.08);

}

/*=========================================
SELECCIONADO
=========================================*/

.service-option input:checked + .option-card{

    border-color:#36A3DB;

    background:#f8fbff;

    box-shadow:0 20px 45px rgba(54,163,219,.18);

}

.service-option input:checked + .option-card i{

    background:linear-gradient(
        135deg,
        #ED1727,
        #1F3B6D
    );

    transform:scale(1.08);

}

.service-option input:checked + .option-card::after{

    content:"✓";

    position:absolute;

    top:18px;

    right:18px;

    width:32px;

    height:32px;

    border-radius:50%;

    background:#36A3DB;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:16px;

    font-weight:700;

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1200px){

.service-options{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.service-options{

grid-template-columns:1fr;

gap:20px;

}

.option-card{

padding:28px 20px;

}

.option-card i{

width:70px;

height:70px;

font-size:28px;

}

.option-card h4{

font-size:18px;

}

.option-card p{

font-size:14px;

}

}

@media(max-width:480px){

.option-card{

padding:24px 18px;

}

.option-card i{

width:60px;

height:60px;

font-size:24px;

}

.option-card h4{

font-size:17px;

}

}

/*=========================================
CONFIRMACIÓN
=========================================*/

.confirmation-card{

    max-width:1000px;

    margin:auto;

}

/*=========================================
RESUMEN
=========================================*/

.summary{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

    margin:45px 0;

}

/*=========================================
ITEM
=========================================*/

.summary-item{

    background:#fff;

    border:1px solid rgba(31,59,109,.08);

    border-radius:18px;

    padding:24px;

    box-shadow:0 12px 30px rgba(0,0,0,.06);

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.summary-item:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 45px rgba(0,0,0,.10);

}

/*=========================================
BORDE SUPERIOR
=========================================*/

.summary-item::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(

        90deg,

        #36A3DB,

        #1F3B6D

    );

}

/*=========================================
TÍTULO
=========================================*/

.summary-item span{

    display:block;

    color:#667085;

    font-size:13px;

    text-transform:uppercase;

    letter-spacing:1px;

    font-weight:700;

    margin-bottom:10px;

}

/*=========================================
VALOR
=========================================*/

.summary-item strong{

    display:block;

    color:#1F3B6D;

    font-size:18px;

    line-height:1.6;

    font-weight:700;

    word-break:break-word;

}

/*=========================================
ITEM GRANDE
=========================================*/

.summary-item.full{

    grid-column:1/-1;

}

/*=========================================
ICONOS OPCIONALES
=========================================*/

.summary-item i{

    position:absolute;

    right:22px;

    top:22px;

    color:#36A3DB;

    opacity:.12;

    font-size:42px;

}

/*=========================================
MENSAJE
=========================================*/

.confirmation-message{

    margin-top:30px;

    padding:22px 28px;

    border-left:5px solid #36A3DB;

    background:#f5fbff;

    border-radius:14px;

}

.confirmation-message p{

    margin:0;

    color:#667085;

    line-height:1.8;

}

/*=========================================
BOTONES
=========================================*/

.confirmation-card .buttons{

    margin-top:45px;

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:992px){

.summary{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.summary{

gap:18px;

margin:35px 0;

}

.summary-item{

padding:20px;

}

.summary-item strong{

font-size:17px;

}

.confirmation-message{

padding:20px;

}

}

@media(max-width:480px){

.summary-item{

padding:18px;

}

.summary-item span{

font-size:12px;

}

.summary-item strong{

font-size:16px;

line-height:1.5;

}

.confirmation-message{

padding:18px;

}

}

/*=========================================
PROCESO DE ATENCIÓN
=========================================*/

.request-process{

    padding:100px 0;

    background:#ffffff;

    position:relative;

    overflow:hidden;

}

.request-process::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(54,163,219,.05);

    top:-180px;

    left:-180px;

}

.request-process::after{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    border-radius:50%;

    background:rgba(237,23,39,.04);

    bottom:-140px;

    right:-140px;

}

/*=========================================
GRID
=========================================*/

.request-process-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:70px;

}

/*=========================================
CARD
=========================================*/

.process-card{

    position:relative;

    background:#fff;

    padding:40px 30px;

    border-radius:22px;

    text-align:center;

    border:1px solid rgba(31,59,109,.08);

    box-shadow:0 18px 45px rgba(0,0,0,.08);

    transition:.35s;

    overflow:hidden;

}

.process-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 60px rgba(0,0,0,.14);

}

/*=========================================
BORDE SUPERIOR
=========================================*/

.process-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(
        90deg,
        #36A3DB,
        #1F3B6D,
        #ED1727
    );

}

/*=========================================
NÚMERO
=========================================*/

.process-number{

    width:55px;

    height:55px;

    margin:0 auto 20px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#eef6ff;

    color:#1F3B6D;

    font-weight:700;

    font-size:20px;

}

/*=========================================
ICONO
=========================================*/

.process-card i{

    width:85px;

    height:85px;

    margin:0 auto 25px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(
        135deg,
        #36A3DB,
        #1F3B6D
    );

    color:#fff;

    font-size:34px;

    transition:.35s;

}

.process-card:hover i{

    transform:rotate(8deg) scale(1.08);

    background:linear-gradient(
        135deg,
        #ED1727,
        #1F3B6D
    );

}

/*=========================================
TÍTULO
=========================================*/

.process-card h3{

    color:#1F3B6D;

    font-size:22px;

    margin-bottom:15px;

}

/*=========================================
TEXTO
=========================================*/

.process-card p{

    color:#667085;

    font-size:15px;

    line-height:1.9;

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1200px){

.request-process-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.request-process{

padding:80px 0;

}

.request-process-grid{

grid-template-columns:1fr;

gap:24px;

margin-top:50px;

}

.process-card{

padding:30px 24px;

}

.process-card i{

width:70px;

height:70px;

font-size:28px;

}

.process-card h3{

font-size:20px;

}

.process-card p{

font-size:15px;

}

}

@media(max-width:480px){

.process-card{

padding:26px 20px;

}

.process-number{

width:48px;

height:48px;

font-size:18px;

}

.process-card h3{

font-size:18px;

}

.process-card p{

font-size:14px;

line-height:1.8;

}

}

/*=========================================
BENEFICIOS
=========================================*/

.request-benefits{

    padding:100px 0;

    background:#f8fbff;

    position:relative;

    overflow:hidden;

}

.request-benefits::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    border-radius:50%;

    background:rgba(54,163,219,.05);

    top:-180px;

    right:-180px;

}

.request-benefits::after{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    border-radius:50%;

    background:rgba(237,23,39,.04);

    bottom:-150px;

    left:-150px;

}

/*=========================================
GRID
=========================================*/

.benefits-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:70px;

}

/*=========================================
CARD
=========================================*/

.benefit-card{

    position:relative;

    background:#fff;

    border-radius:22px;

    padding:40px 30px;

    text-align:center;

    border:1px solid rgba(31,59,109,.08);

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    transition:.35s;

    overflow:hidden;

}

.benefit-card:hover{

    transform:translateY(-10px);

    box-shadow:0 35px 65px rgba(0,0,0,.14);

}

/*=========================================
BORDE SUPERIOR
=========================================*/

.benefit-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(

        90deg,

        #36A3DB,

        #1F3B6D,

        #ED1727

    );

}

/*=========================================
ICONO
=========================================*/

.benefit-card i{

    width:85px;

    height:85px;

    margin:0 auto 25px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(

        135deg,

        #36A3DB,

        #1F3B6D

    );

    color:#fff;

    font-size:34px;

    transition:.35s;

}

.benefit-card:hover i{

    transform:rotate(8deg) scale(1.08);

    background:linear-gradient(

        135deg,

        #ED1727,

        #1F3B6D

    );

}

/*=========================================
TITULO
=========================================*/

.benefit-card h3{

    color:#1F3B6D;

    font-size:22px;

    margin-bottom:15px;

    line-height:1.4;

}

/*=========================================
TEXTO
=========================================*/

.benefit-card p{

    color:#667085;

    font-size:15px;

    line-height:1.9;

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1200px){

.benefits-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.request-benefits{

padding:80px 0;

}

.benefits-grid{

grid-template-columns:1fr;

gap:24px;

margin-top:50px;

}

.benefit-card{

padding:30px 24px;

}

.benefit-card i{

width:72px;

height:72px;

font-size:30px;

}

.benefit-card h3{

font-size:20px;

}

.benefit-card p{

font-size:15px;

}

}

@media(max-width:480px){

.benefit-card{

padding:26px 20px;

}

.benefit-card i{

width:65px;

height:65px;

font-size:26px;

}

.benefit-card h3{

font-size:18px;

}

.benefit-card p{

font-size:14px;

line-height:1.8;

}

}

/*=========================================
GARANTÍAS
=========================================*/

.guarantees{

    padding:100px 0;

    background:#ffffff;

    position:relative;

    overflow:hidden;

}

.guarantees::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(54,163,219,.05);

    top:-180px;

    left:-180px;

}

.guarantees::after{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    border-radius:50%;

    background:rgba(237,23,39,.04);

    bottom:-150px;

    right:-150px;

}

/*=========================================
GRID
=========================================*/

.guarantees-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:70px;

}

/*=========================================
CARD
=========================================*/

.guarantee-card{

    background:#fff;

    border-radius:22px;

    padding:35px 25px;

    text-align:center;

    border:1px solid rgba(31,59,109,.08);

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    transition:.35s;

}

.guarantee-card:hover{

    transform:translateY(-10px);

    box-shadow:0 35px 65px rgba(0,0,0,.14);

}

.guarantee-card i{

    width:80px;

    height:80px;

    margin:0 auto 22px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(
        135deg,
        #36A3DB,
        #1F3B6D
    );

    color:#fff;

    font-size:32px;

    transition:.35s;

}

.guarantee-card:hover i{

    transform:scale(1.08);

    background:linear-gradient(
        135deg,
        #ED1727,
        #1F3B6D
    );

}

.guarantee-card h3{

    color:#1F3B6D;

    font-size:21px;

    margin-bottom:14px;

}

.guarantee-card p{

    color:#667085;

    font-size:15px;

    line-height:1.8;

}

/*=========================================
CTA
=========================================*/

.guarantees-cta{

    margin-top:80px;

    padding:60px;

    border-radius:28px;

    background:linear-gradient(
        135deg,
        #1F3B6D,
        #29508d
    );

    text-align:center;

    color:#fff;

    position:relative;

    overflow:hidden;

}

.guarantees-cta::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    top:-180px;

    right:-100px;

}

.guarantees-cta h3{

    font-size:38px;

    margin-bottom:18px;

    position:relative;

}

.guarantees-cta p{

    max-width:700px;

    margin:auto;

    line-height:1.9;

    opacity:.9;

    position:relative;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-top:40px;

    flex-wrap:wrap;

}

.cta-buttons a{

    min-width:220px;

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1200px){

.guarantees-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.guarantees{

padding:80px 0;

}

.guarantees-grid{

grid-template-columns:1fr;

gap:24px;

margin-top:50px;

}

.guarantee-card{

padding:30px 22px;

}

.guarantees-cta{

padding:40px 25px;

margin-top:60px;

}

.guarantees-cta h3{

font-size:30px;

}

.guarantees-cta p{

font-size:15px;

}

.cta-buttons{

flex-direction:column;

align-items:center;

}

.cta-buttons a{

width:100%;

max-width:320px;

}

}

@media(max-width:480px){

.guarantee-card{

padding:26px 20px;

}

.guarantee-card i{

width:68px;

height:68px;

font-size:28px;

}

.guarantee-card h3{

font-size:18px;

}

.guarantees-cta{

padding:35px 20px;

}

.guarantees-cta h3{

font-size:25px;

}

}

/*=========================================
CTA FINAL
=========================================*/

.final-cta{

    padding:110px 0;

    background:linear-gradient(
        135deg,
        #1F3B6D 0%,
        #29508d 55%,
        #36A3DB 100%
    );

    position:relative;

    overflow:hidden;

}

/*=========================================
EFECTOS DE FONDO
=========================================*/

.final-cta::before{

    content:"";

    position:absolute;

    width:520px;

    height:520px;

    border-radius:50%;

    background:rgba(255,255,255,.06);

    top:-260px;

    right:-180px;

}

.final-cta::after{

    content:"";

    position:absolute;

    width:380px;

    height:380px;

    border-radius:50%;

    background:rgba(255,255,255,.04);

    bottom:-180px;

    left:-140px;

}

/*=========================================
CONTENEDOR
=========================================*/

.final-cta .container{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:50px;

    align-items:center;

}

/*=========================================
CONTENIDO
=========================================*/

.final-cta-content span{

    display:inline-block;

    padding:10px 24px;

    border-radius:50px;

    background:rgba(255,255,255,.12);

    color:#fff;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:25px;

}

.final-cta-content h2{

    color:#fff;

    font-size:48px;

    line-height:1.2;

    margin-bottom:25px;

}

.final-cta-content p{

    color:rgba(255,255,255,.90);

    font-size:17px;

    line-height:1.9;

    max-width:700px;

}

/*=========================================
BOTONES
=========================================*/

.final-cta-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

    margin-top:40px;

}

.final-cta-buttons a{

    min-width:220px;

}

/*=========================================
INFORMACIÓN
=========================================*/

.final-info{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.info-box{

    display:flex;

    align-items:center;

    gap:18px;

    padding:22px;

    border-radius:18px;

    background:rgba(255,255,255,.10);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.15);

    transition:.35s;

}

.info-box:hover{

    transform:translateX(8px);

    background:rgba(255,255,255,.16);

}

.info-box i{

    width:60px;

    height:60px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#fff;

    color:#1F3B6D;

    font-size:24px;

}

.info-box strong{

    display:block;

    color:#fff;

    margin-bottom:6px;

    font-size:18px;

}

.info-box p{

    color:rgba(255,255,255,.85);

    font-size:15px;

    margin:0;

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:992px){

.final-cta .container{

grid-template-columns:1fr;

text-align:center;

}

.final-cta-content p{

margin:auto;

}

.final-info{

margin-top:20px;

}

.final-cta-buttons{

justify-content:center;

}

}

@media(max-width:768px){

.final-cta{

padding:80px 0;

}

.final-cta-content h2{

font-size:36px;

}

.final-cta-content p{

font-size:16px;

}

.info-box{

padding:18px;

}

.info-box i{

width:52px;

height:52px;

font-size:20px;

}

}

@media(max-width:480px){

.final-cta{

padding:70px 0;

}

.final-cta-content h2{

font-size:30px;

}

.final-cta-buttons{

flex-direction:column;

}

.final-cta-buttons a{

width:100%;

}

.info-box{

flex-direction:column;

text-align:center;

}

.info-box i{

margin-bottom:10px;

}

}

/*=========================================
CLIENTES
=========================================*/

.clients{

    padding:100px 0;

    background:#ffffff;

    position:relative;

    overflow:hidden;

}

.clients::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    border-radius:50%;

    background:rgba(54,163,219,.05);

    top:-180px;

    left:-180px;

}

.clients::after{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    border-radius:50%;

    background:rgba(237,23,39,.04);

    bottom:-150px;

    right:-150px;

}

/*=========================================
LOGOS
=========================================*/

.clients-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:repeat(6,1fr);

    gap:30px;

    margin-top:70px;

    align-items:center;

}

.client-logo{

    background:#fff;

    border:1px solid rgba(31,59,109,.08);

    border-radius:20px;

    padding:25px;

    height:140px;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:0 15px 35px rgba(0,0,0,.06);

    transition:.35s;

}

.client-logo:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 50px rgba(0,0,0,.12);

}

.client-logo img{

    max-width:100%;

    max-height:70px;

    object-fit:contain;

    filter:grayscale(100%);

    opacity:.7;

    transition:.35s;

}

.client-logo:hover img{

    filter:none;

    opacity:1;

    transform:scale(1.08);

}

/*=========================================
ESTADÍSTICAS
=========================================*/

.clients-stats{

    margin-top:80px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stat-card{

    background:#fff;

    border-radius:22px;

    padding:35px 25px;

    text-align:center;

    border:1px solid rgba(31,59,109,.08);

    box-shadow:0 18px 40px rgba(0,0,0,.08);

    transition:.35s;

}

.stat-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 60px rgba(0,0,0,.14);

}

.stat-card h3{

    font-size:48px;

    font-weight:800;

    color:#36A3DB;

    margin-bottom:12px;

}

.stat-card p{

    color:#667085;

    font-size:16px;

    line-height:1.7;

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1200px){

.clients-grid{

grid-template-columns:repeat(3,1fr);

}

.clients-stats{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.clients{

padding:80px 0;

}

.clients-grid{

grid-template-columns:repeat(2,1fr);

gap:20px;

margin-top:50px;

}

.client-logo{

height:120px;

padding:20px;

}

.client-logo img{

max-height:55px;

}

.clients-stats{

grid-template-columns:1fr;

gap:20px;

margin-top:60px;

}

.stat-card{

padding:30px 20px;

}

.stat-card h3{

font-size:38px;

}

}

@media(max-width:480px){

.clients-grid{

grid-template-columns:1fr;

}

.client-logo{

height:110px;

}

.stat-card{

padding:25px 18px;

}

.stat-card h3{

font-size:34px;

}

.stat-card p{

font-size:15px;

}

}

/*=========================================
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;

}

}
