@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
body.menu-open > *:not(.header) {
    filter: blur(6px);
    transition: filter 0.3s ease;
}
body.menu-open {
    overflow: hidden;
    height: 100vh;
}
/* Variables globales */
:root{
    --primary: #002a52;
    --secondary: #0098a5;
    --secondary-darken: rgb(16, 83, 110);
    --extra: #e8671c;
    --text: #48484d;
    --dark: #000000;
    --white: #ffffff;
    --gray-light: #eaeef0;
    --gray-medium: #dfe5ea;
    --gray-dark: #292e31;
    --accent: #e8671c;
    --on: #c05c24;

    --rounded-full: 5rem;
    --rounded-md: .5rem;
    --rounded-lg: 1.5rem;

    --text-xs: 0.8rem;
    --text-sm: 0.9rem;
    --text-normal: 1.1rem;
    --text-md: 1.1rem;
    --text-lg: 1.8rem;
    --text-xl: 2.2rem;
    --text-xxl: 2.6rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ELEMENTO ANTES DE APARECER */
.anim-intro{
    opacity:0;
    transform:translateY(80px);
    transition:
        opacity .8s cubic-bezier(.22,.61,.36,1),
        transform .8s cubic-bezier(.22,.61,.36,1);
}

.anim-intro.in-view{
    opacity:1;
    transform:translateY(0);
}

/* Estilos Generales */
.logo{
    max-width: 145px;
    min-width: 100px;
}
html{
    font-size: 16px;
}
html *{
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

/* Heading & Paragraph */
p {
    color: var(--text);
    font-size: var(--text-normal);
    line-height: 1.5;
    margin: 1rem 0;
}
h1, h2, h3{
    font-family: "Barlow Condensed", sans-serif;
    color: var(--text);
    font-weight: 700;
    line-height: 1.2;
}
h1{
    font-size: 3.2rem;
    margin: 1.2rem 0;
    font-weight: 600;
    color: var(--dark);
}
h2{
    font-size: var(--text-xxl);
    margin: 1.2rem 0;
}
h3{
    font-size: 1.2rem;
    margin: 1rem 0;
}
h4{
    font-weight: 600;
}

@media screen and (max-width: 1024px) {
    h1{
        font-size: 2.4rem;
    }
    h2{
        font-size: var(--text-lg);
        margin: 1.2rem 0;
    }
    h4{
        font-size: var(--text-normal) !important;
        font-weight: 600;
    }
}
/* Text Color */
.text-primary{
    color: var(--primary) !important;
}
.text-secondary{
    color: var(--secondary);
}
.text-extra{
    color: var(--extra);
}
.text-dark{
    color: var(--dark);
}
.text-white{
    color: var(--white);
}
.text-gray-light{
    color: var(--gray-light);
}
.text-gray-dark{
    color: var(--gray-dark);
}
.text-accent{
    color: var(--accent);
}
.text-on{
    color: var(--on);
}

/* TEXT STYLE */
.font-italic{
    font-style: italic;
}
/* TEXT SIZE */
.text-md{
    font-size: var(--text-md);
}
.text-lg{
    font-size: var(--text-lg);
}

/* Text Transform */
.uppercase{
    text-transform: uppercase;
}

/* B !importantackground Color */
.bg-primary{
    background-color: var(--primary) !important;
}
.bg-secondary{
     background-color: var(--secondary) !important;
}
.bg-extra{
    background-color: var(--extra) !important;
}
.bg-gray-light{
    background-color: var(--gray-light) !important;
}
.bg-white{
    background-color: var(--white) !important;
}
/* Image Responsive */
img{
    width: 100%;
    height: auto;
}

/* ROUNDED */
.rounded-lg{
    border-radius: var(--rounded-lg);
}
/* ALIGNERS */
.align-items-center{
    display: flex;
    align-items: center;
}
/* TEXT ALIGNERS */
.text-center{
    text-align: center;
    display: block;
}
/* SPACERS */
.p-0{
    padding: 0 !important;
}
.mt{
    margin-top: 2rem;
}
.mb-2{
    margin-bottom: 2rem;
}
.mr-1{
    margin-right: 1rem;
}



/* Botones */
.btn{
    color: var(--white) !important;
    text-decoration: none;
    text-transform: uppercase;
    border-style: solid;
    border-color: #cccccc;
    border-width: 3px;
    padding: 1rem 2.4rem;
    margin: 10px;
    display: inline-block;
    text-wrap: nowrap;
    text-align: center;
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    background-color: #cccccc;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    z-index: 2000;
    white-space: nowrap;
    letter-spacing: .1em;
}
.btn-big{
    color: var(--white) !important;
    text-decoration: none;
    border-radius: var(--rounded-md);
    border-style: solid;
    border-color: #cccccc;
    border-width: 3px;
    padding: 1rem 2rem;
    margin: 10px;
    display: inline-block;
    white-space: nowrap;
    text-align: center;
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    font-size: 2.2rem;
    background-color: #cccccc;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    z-index: 2000;
}
.btn i{
    margin-right: .8rem;
    margin-left: .8rem;
}
.btn-primary{
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.btn-primary:hover{
    filter: brightness(120%);
}
.btn-secondary{
    background-color: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}
.btn-secondary i{
    color: var(--white);
}
.btn-secondary:hover{
    filter: brightness(130%);
}
.btn-extra{
    background-color: var(--extra);
    color: var(--white);
    border-color: var(--extra);
}
.btn-extra i{
    color: var(--white);
}
.btn-extra:hover{
    background-color: var(--secondary);
}
.btn-outline-secondary{
    background-color: transparent;
    color: var(--secondary) !important;
    border-color: var(--secondary);
    z-index: 2000;
    cursor: pointer !important;
}
.btn-outline-secondary:hover{
    background-color: var(--secondary);
    color: var(--white) !important;
}
.btn-outline-extra{
    background-color: transparent;
    color: var(--extra);
    border-color: var(--extra);
}
.btn-outline-extra:hover{
    background-color: var(--secondary);
    color: var(--white);
}
.btn-outline-white{
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline-white:hover{
    background-color: var(--white);
    color: var(--primary) !important;
}

/* BTN Responsive */
@media screen and (max-width: 768px){
    .btn{
        border-width: 2px;
        font-size: var(--text-sm);
        padding: .5rem 1rem;
    }
}
/* Container */
.container{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 1.5rem;
}
.container-fluid{
    width: 100%;
    margin: 0 auto;
    padding: 0 3rem;
    gap: 1.5rem;
}

/* Columns */
.columns{
    display: flex;
    gap: 1rem;
}
.columns > *{
    flex: 1;
    padding: 1rem;
}

/* Columns Responsive */
@media screen and (max-width: 1024px) {
    .columns > *{
        padding: 0.8rem;
    }
}
@media screen and (max-width: 992px) {
    .columns > *{
        padding: 0.5rem;
    }
}
@media screen and (max-width: 880px) {
    .columns{
        flex-direction: column;
    }
}

/* HEADER */
/* ==============================
   HEADER BASE
============================== */

.header {
    width: 100%;
    position: relative;
    transition: all .3s ease;
    z-index: 1000;
}

.header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    animation: slideDown .3s ease forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 0;
    gap: 2rem;
    padding: 5px 1rem;
    position: relative;
}
header .nav-bar .btn-wrapper .btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
header .nav-bar .btn-wrapper .btn i{
    font-size: 1.5rem;
}
header .nav-bar .social-wrapper ul.social{
    list-style: none;
    display: flex;
    align-items: center;
}
header .nav-bar .social-wrapper ul.social li{
    padding: 0 .3rem;
}
header .nav-bar .social-wrapper ul.social li a i{
    font-size: var(--text-xl);
    color: var(--secondary);
}
header .nav-bar .social-wrapper ul.social li a i:hover{
    color: var(--secondary);
}
header.sticky .container .nav-bar .logo{
    width: 100px;
}

/* ==============================
   NAV DESKTOP
============================== */

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
}

.nav a {
    text-decoration: none;
    font-weight: 500;
    color: #111;
}

/* ==============================
   HAMBURGER ANIMATION
============================== */

.hamburger {
    width: 30px;
    min-width: 40px;
    height: 24px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    right: 20px;
    z-index: 3000; /* encima del overlay */
}

.hamburger span {
    height: 5px;
    width: 100%;
    background: var(--secondary);
    border-radius: 3px;
    transition: all .3s ease;
}

/* Estado activo → X */
.hamburger.active{
    position: fixed;
    top: 30px;
    right: 20px;
    z-index: 4000;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 1024px) {

    .nav {
        position: fixed;
        inset: 0;
        background: rgba(255,255,255,0.7);
        backdrop-filter: blur(12px);

        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;

        transform: translateY(-250%);
        transition: transform .4s ease;

        margin-left: 0; /* importante */
    }
    .nav.active {
        transform: translateY(0);
    }
    .nav a {
        font-size: 1.5rem;
        font-weight: 600;
    }

    .btn-wrapper {
        width: 100%;
        text-align: right;
    }

    .nav-bar .social-wrapper{
        padding-right: 70px;
    }

    .hamburger {
        display: flex;
    }
}
@media screen and (max-width: 480px){
    .nav-bar{
        flex-wrap: wrap;
        gap: 0;
    }
    .nav-bar .logo{
        width: 80px;
    }
    .btn-wrapper{
        padding: 0;
    }
    .btn-wrapper .btn.btn-secondary{
        display: block;
        margin: 5px 0;
    }
    .nav-bar .social-wrapper{
        position: absolute;
        top: 25px;
        right: 80px;
        padding-right: 10px;
    }
    .hamburger{
        top: 30px;
    }
}

/* MAIN */
/* SECTIONS */
section{
    padding-left: 20px;
    padding-right: 20px;
}
.hero{
    padding-left: 0;
    padding-right: 0;
    background-image: url("img/03.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    border-bottom: solid 25px var(--secondary);
}
.hero .inner-hero{
    width: 100%;
    height: 100%;
    padding: 50px 20px 80px 20px;
    display: flex;
    position: relative;
    background-color: rgba(0, 42, 82, .6);
    width: 100%;
    background-image: 
        linear-gradient(to right, #ffffff0c 2px, transparent 2px),
        linear-gradient(to bottom, #ffffff0c 2px, transparent 2px);

  background-size: 60px 60px; /* tamaño de la cuadrícula */
}
.hero .inner-hero .container{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.hero .experience-badge{
    font-family: monospace;
    background-color: var(--primary);
    border-top: solid 4px var(--accent);
    padding: 1rem;
    margin: 0;
    color: var(--white);
    font-size: var(--text-lg);
    max-width: fit-content;
    box-shadow: 0 0 3px rgba(0, 0, 0, 1);
    position: relative;
}
.hero .experience-badge::after{
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    border-right: solid 2px var(--white);
    border-bottom: solid 2px var(--white);
    position: absolute;
    right: -10px;
    bottom: -10px;
}
.hero .experience-badge::before{
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    border-left: solid 2px var(--white);
    border-bottom: solid 2px var(--white);
    position: absolute;
    left: -10px;
    bottom: -10px;
}
.hero h1{
    color: var(--white);
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
    max-width: 800px;
    line-height: 1;
    margin: 0;
}
.hero h1 span{
    font-family: "Barlow Condensed", sans-serif;
}
.hero p{
    color: var(--white);
    font-size: 1.25rem;
    max-width: 800px;
}
.hero ul.list{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    max-width: 800px;
    gap: 1rem;
}
.hero ul.list li{
    background-color: rgba(255,255,255,0.1);
    border: solid 1px rgba(255,255,255,0.4);
    color: var(--white);
    font-size: var(--text-md);
    padding: .8rem;
    display: flex;
    align-items: center;
}
.hero ul.list i{
    color: var(--secondary);
    font-size: var(--text-md);
}
.actions{
    display: flex;
    justify-content: start;
    align-items: center;
    padding-top: 1rem;
}
.actions a{
    margin: 0 1rem 0 0;
    display: flex;
    align-items: center;
}
.actions a i{
    font-size: 1.5rem;
}
.hero .angle{
    width: 80px;
    height: 80px;
    border-right: solid 3px var(--accent);
    border-top: solid 3px var(--accent);
    position: absolute;
    top: 3rem;
    right: 8rem;
}

/* HERO RESPONSIVE */

.arrow-down{
    position: absolute;
    left: 50%;
    bottom: 4%;
    transform: translateX(-50%);
    font-size: 60px;
    color: var(--secondary);
    animation: bounce 2s infinite;
}

/* SEC-1 */
.sec-1{
    padding: 4rem 1rem;
}
.sec-1 .col{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.sec-1 .tag{
    display: flex;
    align-items: center;
    font-size: var(--text-md);
}
.sec-1 .tag i{
    background-color: #c56c3832;
    padding: 1rem;
    margin-right: .5rem;
    color: #c56b38;
}
.sec-1 .tag p{
    font-family: 'Courier New', Courier, monospace;
    font-size: var(--text-sm);
    letter-spacing: 2px;
    color: #c56b38;
}
.sec-1 h2{
    color: var(--primary);
    font-size: 3.5rem;
    line-height: 1;
}
.sec-1 .text-lead{
    background-color: var(--primary);
    padding: 1.5rem;
    border-top: solid 10px var(--secondary);
    color: var(--white);
    margin-top: 2rem;
}
.sec-1 .text-lead strong{
    color: var(--secondary);
    font-weight: 700;
}
.sec-1 .section-div{
    font-family: 'Courier New', Courier, monospace;
    font-size: var(--text-md);
    text-transform: uppercase;
    color: var(--secondary);
    position: relative;
    padding-left: 110px;
}
.sec-1 .section-div:before{
    content: '';
    display: block;
    width: 60px;
    height: 5px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-2.5px);
    background-color: var(--secondary);
}
.sec-1 .section-div:after{
    content: '';
    display: block;
    width: 20px;
    height: 5px;
    position: absolute;
    left: 70px;
    top: 50%;
    transform: translateY(-2.5px);
    background-color: var(--accent);
}
.sec-1 h3{
    color: var(--primary);
    font-size: 2rem;
}
.sec-1 ul.list{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    color: var(--primary);
    font-weight: 600;
}
.sec-1 ul.list li{
    padding: 2rem;
    border: solid 2px var(--gray-medium);
    display: flex;
    align-items: center;
}
.sec-1 ul.list li:hover{
    border: solid 2px var(--secondary);
}
.sec-1 ul.list li .wrapper-i{
    padding: 1rem;
    background-color: var(--gray-light);
    border: solid 2px var(--gray-medium);
    margin-right: .5rem;
    position: relative;
}
.sec-1 ul.list li .wrapper-i::before{
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    border-top: solid 2px var(--secondary);
    border-left: solid 2px var(--secondary);
    position: absolute;
    left: -2px;
    top: -2px;
}
.sec-1 ul.list li .wrapper-i::after{
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    border-bottom: solid 2px var(--secondary);
    border-right: solid 2px var(--secondary);
    position: absolute;
    right: -2px;
    bottom: -2px;
}
.sec-1 ul.list li .wrapper-i i{
    font-size: 1.5rem;
}
/* SEC-2 */
.sec-2{
    padding: 4rem 1rem;
}
p.tag-section{
    color: var(--secondary);
    text-transform: uppercase;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 600;
    text-align: center;
    font-size: var(--text-md);
}
.sec-2 h2{
    color: var(--primary);
    text-align: center;
    font-size: 3.5rem;
    position: relative;
    padding-bottom: 30px;
}
.sec-2 h2::before{
    content: '';
    display: block;
    width: 90px;
    height: 5px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50px);
    background-color: var(--secondary);
}
.sec-2 h2::after{
    content: '';
    display: block;
    width: 20px;
    height: 5px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(50px);
    background-color: var(--extra);
}
.sec-2 p{
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.sec-2 .grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    margin-top: 4rem;
}
.sec-2 .grid p{
    text-align: left;
}
.sec-2 .card:nth-of-type(1){
    border-top: solid 10px var(--secondary);
}
.sec-2 .card:nth-of-type(1) i{
    color: var(--secondary);
}
.sec-2 .card:nth-of-type(2){
    border-top: solid 10px var(--primary);
}
.sec-2 .card:nth-of-type(2) i{
    color: var(--primary);
}
.sec-2 .card:nth-of-type(3){
    border-top: solid 10px var(--extra);
}
.sec-2 .card:nth-of-type(3) i{
    color: var(--extra);
}
.sec-2 .featured-block{
    background-color: var(--primary);
    display: flex;
    align-items: center;
    padding: 2rem;
}
.sec-2 .featured-block h3{
    color: var(--white);
    font-size: var(--text-xl);
}
.sec-2 .featured-block p{
    text-align: left;
    color: var(--white);
}
.sec-2 .featured-block .btn{
    display: flex;
    align-items: center;
}
.sec-2 .featured-block .btn i{
    font-size: 1.5rem;
}

/* SEC 3 */
.sec-3{
  padding: 4rem 1rem;
  position: relative;

  background-image: 
    /* patrón de líneas diagonales */
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.08) 0px,
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px,
      transparent 20px
    ),

    /* overlay para oscurecer imagen */
    linear-gradient(
      rgba(255,255,255,0.9),
      rgba(255,255,255,0.9)
    ),

    /* imagen */
    url('img/04.jpg');

  background-size: auto, auto, cover;
  background-position: center;
  background-repeat: repeat, no-repeat, no-repeat;
}
.sec-3 h2{
    color: var(--primary);
    text-align: center;
    font-size: 3.5rem;
    position: relative;
    padding-bottom: 30px;
}
.sec-3 h2::before{
    content: '';
    display: block;
    width: 90px;
    height: 5px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50px);
    background-color: var(--secondary);
}
.sec-3 h2::after{
    content: '';
    display: block;
    width: 20px;
    height: 5px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(50px);
    background-color: var(--extra);
}
.sec-3 p{
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.sec-3 .grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    margin-top: 4rem;
}
.sec-3 .grid p{
    text-align: left;
}
.sec-3 .grid .card .card-header i{
    color: var(--secondary) !important;
    border: none;
}
.sec-3 .grid .card .card-header .wrapper-i{
    padding: .2rem;
    border: solid 2px var(--gray-medium);
    background-color: var(--gray-light);
    position: relative;
    min-width: 80px;
    min-height: 80px;
}
.sec-3 .grid .card .card-header .wrapper-i::before{
    content: '';
    display: block;
    border-top: solid 2px var(--secondary);
    border-left: solid 2px var(--secondary);
    width: 15px;
    height: 15px;
    position: absolute;
    top: -1px;
    left: -1px;
}
.sec-3 .grid .card .card-header .wrapper-i::after{
    content: '';
    display: block;
    border-bottom: solid 2px var(--secondary);
    border-right: solid 2px var(--secondary);
    width: 15px;
    height: 15px;
    position: absolute;
    bottom: -1px;
    right: -1px;
}
.sec-3 .grid-2{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.sec-3 .grid-2 .card{
    padding: 1.5rem;
}
.sec-3 .grid-2 .card .number-highlight{
    font-family: "Barlow Condensed", sans-serif;
    color: var(--secondary);
    font-size: 4rem;
    font-weight: 700;
    text-align: center;
}
.sec-3 .grid-2 .card p{
    font-family:'Courier New', Courier, monospace;
    font-size: var(--text-sm);
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
}
/* SEC 4 */
.sec-4{
    padding: 8rem 1rem;
    background-color: var(--primary);
}
.sec-4 .tag-section{
    color: var(--secondary);
}
.sec-4 h2{
    color: var(--white);
    text-align: center;
    font-size: 3.5rem;
    position: relative;
    padding-bottom: 30px;
}
.sec-4 h2::before{
    content: '';
    display: block;
    width: 90px;
    height: 5px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50px);
    background-color: var(--secondary);
}
.sec-4 h2::after{
    content: '';
    display: block;
    width: 20px;
    height: 5px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(50px);
    background-color: var(--extra);
}
.sec-4 p{
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    color: var(--white);
}
.sec-4 .grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}
.sec-4 .grid .card{
    background-color: rgba(249, 249, 249, 0.03);
    border: solid 2px rgba(249, 249, 249, 0.08);
    position: relative;
}
.sec-4 .grid .card:hover{
    background-color: rgba(249, 249, 249, 0.06);
    border: solid 2px rgba(249, 249, 249, 0.1);
}
.sec-4 .grid .card::before{
    content: '';
    display: block;
    width: 35px;
    height: 35px;
    background-color: var(--primary);
    border: solid 2px var(--secondary);
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-20px) rotate(45deg);
}
.sec-4 .grid .card::after{
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background-color: var(--secondary);
    position: absolute;
    top: 50%;
    right: -7px;
    transform: translateY(-7px) rotate(45deg);
}
.sec-4 .grid .card:nth-of-type(4)::before{
    display: none;
}
.sec-4 .grid .card:nth-of-type(4)::after{
    display: none;
}
.sec-4 .grid .card .card-header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1rem 0 1rem;
}
.sec-4 .grid .card .card-header span{
    font-family: "Barlow Condensed", sans-serif;
    display: block;
    color: var(--secondary);
    font-size: 4rem;
    font-weight: 700;
}
.sec-4 .grid .card .card-header i{
    font-size: 1.8rem;
    color: var(--secondary);
    background-color: rgba(249, 249, 249, 0.05);
    width: 60px;
    height: 60px;
    border: solid 2px rgba(249, 249, 249, 0.08);
}
.sec-4 .grid .card .card-body h3{
    font-size: 1.5rem;
    color: var(--white);
    line-height: 1;
}
.sec-4 .grid .card .card-body p{
    font-size: .9rem;
    text-align: left;
    color: rgba(249, 249, 249, 0.5);
}
.sec-4 .wrapper-img{
    overflow: hidden;
    max-height: 500px;
    border: solid 5px rgba(249, 249, 249, 0.2);
    position: relative;
}
.sec-4 .wrapper-img::before{
    content: '';
    display: block;
    width: 60px;
    height: 60px;
    border-top: solid 5px var(--extra);
    border-left: solid 5px var(--extra);
    position: absolute;
    left: 20px;
    top: 20px;
}
.sec-4 .wrapper-img::after{
    content: '';
    display: block;
    width: 60px;
    height: 60px;
    border-bottom: solid 5px var(--extra);
    border-right: solid 5px var(--extra);
    position: absolute;
    right: 20px;
    bottom: 20px;
}
.sec-4 .wrapper-img img{
    width: 100%;
    height: auto;
    object-fit: cover; /* O 'contain' para no recortar */
    object-position: center center; /* Centra la imagen */
}
/* SEC 5 */
.sec-5{
    padding: 8rem 1rem;
    background-color: var(--gray-light);
}
.sec-5 .tag-section{
    color: var(--secondary);
}
.sec-5 h2{
    color: var(--primary);
    text-align: center;
    font-size: 3.5rem;
    position: relative;
    padding-bottom: 30px;
}
.sec-5 h2::before{
    content: '';
    display: block;
    width: 90px;
    height: 5px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50px);
    background-color: var(--secondary);
}
.sec-5 h2::after{
    content: '';
    display: block;
    width: 20px;
    height: 5px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(50px);
    background-color: var(--extra);
}
.sec-5 p{
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text);
}
.sec-5 .grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}
.sec-5 .grid .card{
    border: solid 2px var(--gray-medium);
}
.sec-5 .grid .card .card-header{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 1rem 1rem 0 1rem;
}
.sec-5 .grid .card .card-header i{
    font-size: 1.2rem;
    color: var(--secondary);
}
.sec-5 .grid .card .card-header h3{
    font-size: 1.2rem;
    text-transform: uppercase;
}
.sec-5 .grid .card .card-body{
    padding: 1rem;
}
.sec-5 .grid .card .card-body p{
    text-align: left;
    color: var(--text);
    text-transform: uppercase;
    font-size: .8rem;
    letter-spacing: 1px;
}
.sec-5 .important-note{
    padding: 2rem 1rem 2rem 3rem;
    margin-top: 2rem;
    background-color: var(--white);
    border-left: solid 4px var(--secondary);
}
.sec-5 .important-note p{
    text-align: left;
    color: var(--text);
    font-weight: 600;
    font-size: var(--text-normal);
    max-width: 100%;
    position: relative;
}
.sec-5 .important-note p::before{
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    left: -20px;
    top: 8px;
    background-color: var(--accent);
}
.sec-5 .important-note p strong{
    color: var(--primary);
    font-weight: 800;
}
/* SEC 6 */
.sec-6{
    padding: 8rem 1rem;
}
.sec-6 .tag-section{
    color: var(--secondary);
    text-align: left;
}
.sec-6 h2{
    color: var(--primary);
    text-align: left;
    font-size: 3rem;
    position: relative;
    padding-bottom: 30px;
    line-height: 1;
}
.sec-6 h2::before{
    content: '';
    display: block;
    width: 90px;
    height: 5px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--secondary);
}
.sec-6 h2::after{
    content: '';
    display: block;
    width: 20px;
    height: 5px;
    position: absolute;
    bottom: 0;
    left: 100px;
    background-color: var(--extra);
}
.sec-6 .col{
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.sec-6 .col:nth-of-type(2){
    background-color: var(--primary);
    padding: 4rem;
    max-width: 45%;
}
.sec-6 .col:nth-of-type(2) .badge{
    font-family: 'Courier New', Courier, monospace;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
    background-color: var(--extra);
    padding: .8rem 1.2rem;
    display: inline-block;
}
.sec-6 .col:nth-of-type(2) h3{
    color: var(--white);
    font-size: 2rem;
    margin: .5rem 0;
}
.sec-6 .col:nth-of-type(2) p{
    color: var(--gray-medium);
}
.sec-6 .col:nth-of-type(2) ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.sec-6 .col:nth-of-type(2) ul li{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    background-color: rgba(249, 249, 249, 0.1);
    padding: 1rem 2rem;
}
.sec-6 .col:nth-of-type(2) ul li span{
    display: block;
    text-align: center;
    min-width: 100%;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    padding: 0;
    margin: 0;
    color: var(--secondary);
}
.sec-6 .col:nth-of-type(2) ul li p{
    display: block;
    text-align: center;
    min-width: 100%;
    padding: 0;
    margin: 0;
    text-wrap: nowrap;
    font-size: .8rem;
}
.sec-6 .col:nth-of-type(2)::before{
    content: '';
    display: block;
    width: 60px;
    height: 60px;
    border-top: solid 4px var(--secondary);
    border-left: solid 4px var(--secondary);
    position: absolute;
    top: -15px;
    left: -15px;
}
.sec-6 .col:nth-of-type(2)::after{
    content: '';
    display: block;
    width: 60px;
    height: 60px;
    border-bottom: solid 4px var(--secondary);
    border-right: solid 4px var(--secondary);
    position: absolute;
    bottom: -15px;
    right: -15px;
}

/* SEC 7 */
.sec-7{
    padding: 0 1rem;
}
.sec-7 .container-fluid{
    padding: 0;
}
.sec-7 h2{
    color: var(--primary);
    text-align: center;
    font-size: 3.5rem;
    position: relative;
    padding-bottom: 30px;
}
.sec-7 h2::before{
    content: '';
    display: block;
    width: 90px;
    height: 5px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50px);
    background-color: var(--secondary);
}
.sec-7 h2::after{
    content: '';
    display: block;
    width: 20px;
    height: 5px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(50px);
    background-color: var(--extra);
}
/* SEC 8 */
/* SEC 9 */
/* CARDS */
.card{
    background-color: var(--white);
    border: solid 1px var(--gray-light);
    box-shadow: 0 0 20px rgba(0, 0, 0, .2);
    height: 100%;
}
.card .card-header{
    padding: 3rem 2rem 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1.5rem;
}
.card .card-header i{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--text-xl);
    color: var(--accent);
    padding: 1rem;
    background-color: var(--gray-light);
    border: solid 1px var(--gray-medium);
}
.card .card-header h3{
    color: var(--primary);
    font-size: var(--text-lg);
    margin: 1rem 0;
}
.card .card-body{
    padding: 0 2rem 3rem 2rem;
}
.card .card-body p{
    margin: 1rem 0;
}
.card ul{
    list-style: none;
}
.card ul li{
    padding: .5rem 0;
}

/* FOOTER */
footer{
    height: 100%;
    background-color: var(--primary);
    padding: 40px 10px;
    position: relative;
}
footer p {
    color: var(--gray-medium);
}

footer .container{
    border-bottom: solid 1px rgba(255,255,255,0.2);
    padding-bottom: 40px;
}
footer .container:nth-of-type(2){
    border-bottom: none;
    padding: 40px 10px 10px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer .container:nth-of-type(2) p{
    color: var(--white);
}
footer .container:nth-of-type(2) a{
    color: var(--white);
    transform: translateX(-100px);
}
footer h2{
    color: var(--white);
    font-size: var(--text-lg);
}
footer ul{
    list-style: none;
}
footer ul li{
    color: var(--white);
    display: flex;
    align-items: center;
    padding: .3rem 0;
}
footer ul li i{
    margin-right: 1rem;
}
footer ul li a{
    color: var(--white);
    text-decoration: none;
}
footer ul li p{
    color: var(--white);
    margin: 0;
}
footer .social-wrapper ul.social{
    display: flex;
}
footer .social-wrapper ul.social li a i{
    font-size: var(--text-xl);
}
footer .social-wrapper ul.social li a i:hover{
    color: var(--secondary);
}
footer ul.services{
    list-style: none;
}
footer ul.services li i{
    color: var(--accent);
    font-size: .7rem;
}

/* Go to Top button */
.go-top{
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary);
    border-radius: .3rem;
    text-decoration: none;
    box-shadow: 0 0 .8rem rgba(0, 0, 0, .3);
    opacity: 0;
    pointer-events: none;
    transition: all .3s ease;
}
.go-top:hover{
    filter: brightness(110%);
    box-shadow: 0 0 .4rem rgba(0, 0, 0, .7);
    transform: scale(0.93);
}
.go-top:active{
    filter: brightness(110%);
    box-shadow: 0 0 .2rem rgba(0, 0, 0, .7);
    transform: scale(0.85);
}
.go-top.show {
      opacity: 1;
      pointer-events: auto;
    }
.go-top i{
    color: var(--white);
    font-size: var(--text-md);
}

.wrap-logo{
    max-width: 145px;
}

/* WHATSAPP WIDGET */
.wa-widget{
position:fixed;
bottom:20px;
right:20px;
z-index:9999;
font-family: "Manrope", sans-serif;
}
.wa-widget a{
    text-decoration: none;
    color: var(--white);
    font-size: var(--text-lg);
}

/* BOTON */

.wa-button{
width:60px;
height:60px;
background:#25D366;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 8px 20px rgba(0,0,0,.2);
animation: waPulse 2s infinite;
}

@keyframes waPulse{
0%{box-shadow:0 0 0 0 rgba(37,211,102,.7);}
70%{box-shadow:0 0 0 18px rgba(37,211,102,0);}
100%{box-shadow:0 0 0 0 rgba(37,211,102,0);}
}

/* BURBUJA */

.wa-bubble{
position:absolute;
bottom:80px;
right:0;
width:260px;
background:white;
padding:18px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,.15);
display:none;
animation:waFade .4s ease;
}

@keyframes waFade{
from{
opacity:0;
transform:translateY(10px);
}
to{
opacity:1;
transform:translateY(0);
}
}

/* MENSAJE */

.wa-message{
font-size:14px;
line-height:1.4;
margin-bottom:12px;
}

/* BOTON CHAT */

.wa-start{
display:block;
background:#25D366;
color:white;
text-align:center;
padding:10px;
border-radius:6px;
text-decoration:none;
font-weight:bold;
font-size: var(--text-normal)!important;
}

/* CERRAR */

.wa-close{
position:absolute;
top:8px;
right:8px;
background:none;
border:none;
font-size:16px;
font-weight: 600;
cursor:pointer;
color:#777;
}

.wa-close:hover{
color:#000;
}

/* FLECHA */

.wa-bubble:after{
content:"";
position:absolute;
bottom:-10px;
right:22px;
border-width:10px;
border-style:solid;
border-color:white transparent transparent transparent;
}


/* =========================
   MEDIA QUERIES
========================= */

@media screen and (max-width: 1440px){
}
@media screen and (max-width: 1280px){

}
@media screen and (max-width: 1024px){
    .nav-bar .btn-wrapper .btn{
        display: inline-flex;
    }
    /* .SEC-2 */
    .sec-2 .grid .card .card-body p{
        font-size: .9rem;
    }
    /* .SEC-4 */
    .sec-4 .grid{
        grid-template-columns: repeat(2, 1fr);
    }
    .sec-4 .grid .card:nth-of-type(2)::before, .sec-4 .grid .card:nth-of-type(2)::after{
        display: none;
    }
    .sec-4 .wrapper-img{
        max-height: auto;
    }
    .sec-4 .wrapper-img img{
        object-position: center center; /* Centra la imagen */
    }
    /* SEC-6 */
    .sec-6 .col:nth-of-type(2){
        padding: 1.5rem;
    }
    .sec-6 .col:nth-of-type(2) ul{
        flex-direction: column;
    }
    .sec-6 .col:nth-of-type(2) ul li{
        padding: 1rem;
        width: 100%;
    }
}
@media screen and (max-width: 880px) {
    .sec-6 .actions .btn{
        padding: 2rem 2rem;
        text-wrap: wrap;
    }
    .sec-6 .col:nth-of-type(2){
        max-width: 100%;
        margin-top: 3rem;
    }
    .sec-6 .col:nth-of-type(2) ul{
        flex-direction: row;
    }
    footer .container:nth-of-type(2){
        flex-direction: column;
        align-items: start;
    }
    footer .container:nth-of-type(2) a{
        transform: translateX(0);
    }
}
@media screen and (max-width: 768px){
    .top-bar{
        display: none;
    }
    header .nav-bar .btn-wrapper .btn{
        display: flex;
    }
    .hero .actions .btn{
        padding: 2rem 1rem;
    }
    .hero .experience-badge{
        font-size: var(--text-normal);
    }
    .hero h1{
        font-size: 3.8rem;
    }
    /* .SEC-2 */
    .sec-2 .grid{
        grid-template-columns: 1fr;
    }
    .featured-block {
        flex-direction: column;
        align-items: start;
        gap: 1rem;
    }
    .featured-block .content h3, .featured-block .content p{
        text-align: center;
    }
    .featured-block .btn{
        padding: 2rem;
    }
    /* .SEC-3 */
    .sec-3 .grid{
        grid-template-columns: repeat(2, 1fr);
    }
    .sec-3 .grid-2{
        grid-template-columns: repeat(2, 1fr);
    }
    /* SEC-5 */
    .sec-5 .grid{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 480px){
    .nav-bar .btn-wrapper .btn{
        display: flex;
    }
    .hero .angle{
        top: 2rem;
        right: 2rem;
    }
    .hero h1{
        font-size: 3.2rem;
    }
    .hero .actions{
        flex-direction: column;
        align-items: start;
        gap: 1rem;
    }
    .hero .actions .btn{
        display: flex;
        width: 100%;
        justify-content: center;
    }
    /* .SEC-2 */
    .sec-2 .grid{
        grid-template-columns: 1fr;
    }
    /* .SEC-3 */
    .sec-3 .grid{
        grid-template-columns: repeat(1, 1fr);
    }
    .sec-3 .grid-2{
        gap: 1rem;
    }
    /* .SEC-4 */
    .sec-4 .grid{
        grid-template-columns: repeat(1, 1fr);
    }
    .sec-4 .grid .card:nth-of-type(2)::before, 
    .sec-4 .grid .card:nth-of-type(2)::after{
        display: block;
    }
    .sec-4 .grid .card::before{
        top: 100%;
        left: 50%;
        transform: translateY(-20px) rotate(45deg);
    }
    .sec-4 .grid .card::after{
        top: 100%;
        left: 50%;
        transform: translatex(12.5px) translateY(-7px) rotate(45deg);
    }
    /* SEC-5 */
    .sec-5 .grid{
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .sec-6 .col:nth-of-type(2) ul{
        flex-direction: column;
        gap: 1rem;
    }
}