:root{
    --red:#e30613;
    --red-light:#ff3440;
    --red-dark:#900009;
    --black:#111111;
    --white:#ffffff;
    --gray:#f3f3f4;
    --green:#25d366;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#fff;
    color:#111;
    overflow-x:hidden;
}

a{
    text-decoration:none;
    color:inherit;
}

img{
    display:block;
    max-width:100%;
}

button,
input,
select{
    font-family:inherit;
}

button{
    cursor:pointer;
}

.container{
    width:92%;
    max-width:1220px;
    margin:0 auto;
}


/* TOPBAR */

.topbar{
    background:#101010;
    color:#fff;
}

.topbar-inner{
    min-height:36px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    font-size:12px;
    font-weight:700;
}


/* HEADER */

.header{
    height:88px;
    position:sticky;
    top:0;
    z-index:1000;
    background:#fff;
    box-shadow:0 4px 18px rgba(0,0,0,.09);
}

.nav{
    height:88px;
    display:flex;
    align-items:center;
    gap:17px;
}

.brand{
    width:190px;
    flex:0 0 190px;
}

.brand img{
    width:190px !important;
    height:62px !important;
    object-fit:contain;
}

.menu{
    margin-left:auto;
    display:flex;
    align-items:center;
    gap:15px;
}

.menu > a{
    height:88px;
    position:relative;
    display:flex;
    align-items:center;
    font-size:11px;
    font-weight:800;
    text-transform:uppercase;
    white-space:nowrap;
}

.menu > a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:17px;
    width:100%;
    height:3px;
    background:var(--red);
    transform:scaleX(0);
    transition:.3s;
}

.menu > a:hover,
.menu > a.active{
    color:var(--red);
}

.menu > a:hover::after,
.menu > a.active::after{
    transform:scaleX(1);
}


/* IDIOMAS */

.language-switcher{
    min-width:101px;
    height:39px;
    padding:0 8px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    border:1px solid #ddd;
    border-radius:9px;
}

.language-switcher a{
    color:#666;
    font-size:11px;
    font-weight:900;
}

.language-switcher a.active{
    color:var(--red);
}

.mobile-language-bar{
    display:none;
}


/* WHATSAPP HEADER */

.btn-whatsapp{
    padding:13px 15px;
    display:flex;
    align-items:center;
    gap:7px;
    border-radius:10px;
    background:#25d366;
    color:#fff;
    font-size:12px;
    font-weight:900;
}

.btn-whatsapp i{
    font-size:19px;
}

.menu-toggle{
    display:none;
    width:43px;
    height:43px;
    margin-left:auto;
    border:0;
    border-radius:9px;
    background:var(--red);
    color:#fff;
    font-size:22px;
}


/* HERO */

.hero-main{
    height:480px;
    position:relative;
    overflow:hidden;
    color:#fff;
    background:#850008;
}

.hero-main-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
}

.hero-main-red{
    position:absolute;
    inset:0;
    z-index:2;
    background:linear-gradient(
        90deg,
        rgba(58,0,5,.85),
        rgba(100,0,8,.67) 36%,
        rgba(160,0,13,.43) 66%,
        rgba(227,6,19,.20)
    );
}

.hero-main-texture{
    position:absolute;
    inset:0;
    z-index:3;
}

.hero-main-content{
    height:480px;
    position:relative;
    z-index:10;
    display:flex;
    align-items:center;
}

.hero-copy{
    width:680px;
    max-width:100%;
}

.eyebrow{
    font-size:12px;
    font-weight:900;
    letter-spacing:4px;
}

.hero-copy h1{
    margin-top:15px;
    font-size:64px;
    line-height:.98;
}

.hero-copy h1 strong{
    color:#ff3442;
}

.hero-copy > p{
    max-width:600px;
    margin-top:22px;
    font-size:20px;
    line-height:1.55;
}

.hero-points{
    margin-top:30px;
    display:flex;
    flex-wrap:wrap;
    gap:20px;
}

.hero-points span{
    font-size:13px;
    font-weight:800;
}

.hero-button{
    display:inline-block;
    margin-top:30px;
    padding:15px 23px;
    border-radius:9px;
    background:#fff;
    color:var(--red);
    font-size:12px;
    font-weight:900;
}


/* TASAS */

.rates-section{
    padding:50px 0 70px;
    color:#fff;
    background:linear-gradient(
        135deg,
        #620006,
        #a8000d 48%,
        #e30613
    );
}

.section-head{
    margin-bottom:32px;
}

.section-kicker{
    display:block;
    font-size:11px;
    font-weight:900;
    letter-spacing:3px;
}

.section-head h2{
    margin-top:7px;
    font-size:42px;
}

.section-head h2 strong{
    color:#ff4753;
}

.section-head p{
    margin-top:8px;
    color:#ffdade;
}

.rates-wrap{
    position:relative;
}

.rates-track{
    display:grid;
    grid-auto-flow:column;
    grid-auto-columns:calc((100% - 66px)/4);
    gap:22px;
    padding:5px 3px 20px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scroll-snap-type:x mandatory;
    scrollbar-width:none;
}

.rates-track::-webkit-scrollbar{
    display:none;
}

.rate-card{
    overflow:hidden;
    scroll-snap-align:start;
    border-radius:18px;
    background:#fff;
    color:#111;
    box-shadow:0 20px 45px rgba(0,0,0,.25);
}

.flag{
    height:175px;
}

.flag img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.rate-body{
    padding:19px;
}

.rate-body h3{
    min-height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    font-size:15px;
}

.currency-code{
    text-align:center;
    color:#666;
    font-weight:900;
}

.rate-values{
    margin-top:15px;
    padding-top:14px;
    display:grid;
    grid-template-columns:1fr 1fr;
    border-top:1px solid #ddd;
}

.rate-values > div{
    padding:0 8px;
}

.rate-values > div + div{
    border-left:1px solid #ddd;
}

.rate-values span{
    display:block;
    margin-bottom:6px;
    font-size:10px;
    font-weight:900;
}

.rate-values strong{
    display:block;
    font-size:21px;
}

.buy-label,
.buy-value{
    color:#078b46;
}

.sell-label,
.sell-value{
    color:var(--red);
}

.carousel-btn{
    width:44px;
    height:44px;
    position:absolute;
    top:50%;
    z-index:10;
    border:0;
    border-radius:50%;
    background:#fff;
    color:var(--red);
    font-size:31px;
    transform:translateY(-50%);
}

.carousel-btn.left{
    left:-22px;
}

.carousel-btn.right{
    right:-22px;
}


/* CALCULADORA */

.calculator-section{
    padding:58px 0;
    background:#f3f3f4;
}

.calculator-card{
    padding:34px;
    border-radius:22px;
    background:#fff;
    box-shadow:0 20px 55px rgba(0,0,0,.13);
}

.calculator-title{
    display:flex;
    align-items:center;
    gap:18px;
}

.calc-icon{
    width:58px;
    height:58px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:var(--red);
    color:#fff;
}

.dark-kicker{
    color:var(--red);
}

.calculator-title h2{
    font-size:34px;
}

.calculator-title h2 strong{
    color:var(--red);
}

.mode-switch{
    width:550px;
    max-width:100%;
    margin:27px 0 24px;
    display:grid;
    grid-template-columns:1fr 1fr;
    background:#eee;
    border-radius:12px;
    overflow:hidden;
}

.mode{
    padding:14px 10px;
    border:0;
    background:transparent;
    font-weight:900;
}

.mode small{
    display:block;
    margin-top:4px;
}

.mode.active{
    background:var(--red);
    color:#fff;
}

.calculator-grid{
    display:grid;
    grid-template-columns:1.15fr 1fr 1.25fr auto;
    align-items:end;
    gap:15px;
}

.calculator-grid label > span{
    display:block;
    margin-bottom:8px;
    font-size:12px;
    font-weight:800;
}

.calculator-grid select,
.calculator-grid input{
    width:100%;
    height:57px;
    padding:0 14px;
    border:1px solid #d5d5d5;
    border-radius:10px;
    background:#fff;
    font-size:16px;
}

.result-box{
    min-height:79px;
    padding:13px 16px;
    border-radius:10px;
    background:#f0f0f1;
}

.result-box span{
    color:#606060;
    font-size:11px;
}

.result-box strong{
    display:block;
    margin-top:8px;
    color:#078b46;
    font-size:22px;
}

.btn-calc{
    height:57px;
    padding:0 27px;
    border:0;
    border-radius:10px;
    background:var(--red);
    color:#fff;
    font-weight:900;
}

.disclaimer{
    margin-top:18px;
    color:#777;
    font-size:11px;
}


/* REQUISITOS */

.requirements-section{
    padding:85px 0;
    background:#f4f4f5;
}

.requirements-heading{
    max-width:950px;
    margin:0 auto 38px;
    text-align:center;
}

.requirements-heading h2{
    margin-top:9px;
    font-size:43px;
}

.requirements-heading h2 strong{
    color:var(--red);
}

.requirements-intro{
    max-width:900px;
    margin:28px auto 0;
    padding:22px 24px;
    display:flex;
    gap:17px;
    text-align:left;
    border-radius:16px;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.requirements-intro-icon{
    width:45px;
    height:45px;
    flex:0 0 45px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:#fff0f1;
    color:var(--red);
}

.requirements-intro p{
    margin-top:6px;
    color:#606060;
    line-height:1.7;
}

.requirements-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:28px;
}

.requirement-card{
    overflow:hidden;
    border:0;
    border-radius:22px;
    background:#fff;
    box-shadow:0 18px 45px rgba(0,0,0,.10);
}

.requirement-card summary{
    list-style:none;
}

.requirement-card-title{
    padding:18px 22px;
    display:flex;
    align-items:center;
    gap:14px;
    background:#161616;
    color:#fff;
    cursor:pointer;
}

.requirement-card-title > span:nth-child(2){
    flex:1;
    font-size:20px;
    font-weight:900;
}

.requirement-icon{
    width:46px;
    height:46px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:var(--red);
}

.requirement-card[open] .requirement-arrow{
    transform:rotate(180deg);
}

.requirement-card-content{
    padding:25px;
}

.requirement-level + .requirement-level{
    margin-top:25px;
    padding-top:25px;
    border-top:1px solid #e4e4e4;
}

.requirement-level-head{
    display:flex;
    gap:14px;
}

.requirement-usd{
    min-width:100px;
    padding:7px 9px;
    border-radius:7px;
    background:#eaf7ef;
    color:#087d43;
    font-size:11px;
    font-weight:900;
    text-align:center;
}

.requirement-usd.red{
    background:#fff0f1;
    color:var(--red);
}

.requirement-level small{
    display:block;
    margin-top:4px;
    color:#777;
}

.additional-docs{
    margin-top:15px;
    font-size:12px;
    font-weight:800;
}

.requirement-list{
    margin-top:17px;
    display:grid;
    gap:13px;
    list-style:none;
}

.requirement-list li{
    display:flex;
    gap:10px;
    color:#444;
    font-size:14px;
    line-height:1.55;
}

.check-circle{
    width:23px;
    height:23px;
    flex:0 0 23px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:#eaf7ef;
    color:#087d43;
}

.requirement-inline-link{
    display:inline-flex;
    align-items:center;
    gap:6px;
    margin-top:7px;
    color:var(--red);
    font-size:10px;
    font-weight:900;
}


/* DOCUMENTOS */

.requirement-documents{
    margin-top:35px;
    padding:30px;
    border-radius:22px;
    background:#fff;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
}

.requirement-documents-heading{
    display:flex;
    align-items:center;
    gap:15px;
}

.requirement-documents-heading > span{
    width:50px;
    height:50px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:#fff0f1;
    color:var(--red);
}

.requirement-documents-heading p{
    margin-top:5px;
    color:#686868;
}

.document-grid{
    margin-top:24px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
}

.document-card{
    min-height:116px;
    padding:16px;
    display:flex;
    align-items:center;
    gap:13px;
    border:1px solid #e4e4e4;
    border-radius:14px;
    background:#fff;
    transition:.3s;
}

.document-card:hover{
    border-color:var(--red);
    transform:translateY(-4px);
}

.document-icon{
    width:44px;
    height:44px;
    flex:0 0 44px;
    display:grid;
    place-items:center;
    border-radius:10px;
    font-size:22px;
}

.document-icon.pdf{
    background:#fff0f1;
    color:var(--red);
}

.document-icon.excel{
    background:#eaf7ef;
    color:#168649;
}

.document-card strong{
    display:block;
    font-size:13px;
}

.document-card small{
    display:block;
    margin-top:8px;
    color:var(--red);
    font-size:9px;
    font-weight:900;
}

.requirements-notice{
    margin-top:25px;
    padding:20px 22px;
    display:flex;
    gap:15px;
    border:1px solid #f0c9cc;
    border-radius:15px;
    background:#fff7f7;
}

.notice-icon{
    width:40px;
    height:40px;
    flex:0 0 40px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:var(--red);
    color:#fff;
}

.requirements-notice p{
    margin-top:5px;
    color:#5c4547;
    font-size:12px;
    line-height:1.65;
}

.requirements-help{
    margin-top:30px;
    padding:30px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:35px;
    border-radius:22px;
    color:#fff;
    background:linear-gradient(
        120deg,
        #4d0005,
        #9f000b 55%,
        #e30613
    );
}

.requirements-help > div:first-child{
    max-width:650px;
}

.requirements-help h3{
    margin-top:8px;
    font-size:27px;
}

.requirements-help p{
    margin-top:9px;
    color:#f5d9db;
    line-height:1.7;
}

.requirements-help-buttons{
    flex:0 0 260px;
    display:grid;
    gap:10px;
}

.requirements-help-buttons a{
    min-height:48px;
    padding:0 15px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    border-radius:9px;
    background:#25d366;
    font-size:11px;
    font-weight:900;
}


/* NOSOTROS */

.about-section{
    padding:85px 0;
}

.about-clean{
    max-width:820px;
    margin:0 auto;
    text-align:center;
}

.about-clean h2{
    margin:9px 0 22px;
    font-size:45px;
}

.about-clean h2 strong{
    color:var(--red);
}

.about-clean p{
    margin-bottom:14px;
    color:#555;
    line-height:1.8;
}

.red-button{
    display:inline-block;
    margin-top:14px;
    padding:15px 22px;
    border-radius:10px;
    background:var(--red);
    color:#fff;
    font-weight:900;
}


/* EXPERIENCIA */

.experience-section{
    padding:85px 0;
    background:#f4f4f5;
}

.experience-heading{
    max-width:850px;
    margin:0 auto 45px;
    text-align:center;
}

.experience-heading h2{
    margin-top:10px;
    font-size:43px;
}

.experience-heading h2 strong{
    color:var(--red);
}

.experience-heading p{
    margin-top:18px;
    color:#5c5c5c;
    line-height:1.75;
}

.experience-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.experience-card{
    overflow:hidden;
    border-radius:24px;
    background:#fff;
}

.experience-image{
    height:340px;
    position:relative;
}

.experience-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.experience-badge{
    position:absolute;
    left:22px;
    bottom:22px;
    padding:9px 14px;
    border-radius:7px;
    background:var(--red);
    color:#fff;
    font-weight:900;
}

.experience-content{
    padding:27px;
    display:grid;
    grid-template-columns:auto 1fr;
    gap:18px;
}

.experience-number{
    width:48px;
    height:48px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:#f1f1f1;
    color:var(--red);
    font-weight:900;
}

.experience-content p{
    margin-top:10px;
    color:#626262;
    line-height:1.7;
}

.experience-benefits{
    margin-top:35px;
    padding:23px 25px;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:15px;
    border-radius:18px;
    background:#fff;
}

.experience-benefits > div{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:9px;
}

.experience-benefits strong{
    width:31px;
    height:31px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:#eaf7ef;
    color:#078b46;
}

.experience-message{
    margin-top:35px;
    padding:38px 40px;
    border-radius:22px;
    color:#fff;
    background:linear-gradient(
        120deg,
        #4f0005,
        #a3000b 55%,
        #e30613
    );
}

.experience-message span{
    color:#ff8d94;
    font-size:11px;
    font-weight:900;
}

.experience-message h3{
    margin-top:10px;
    font-size:30px;
}

.experience-message h3 strong{
    color:#ff737c;
}

.experience-message p{
    margin-top:12px;
    color:#f4d8da;
}


/* SERVICIOS */

.services-strip{
    padding:23px 0;
    background:linear-gradient(
        90deg,
        #850008,
        #e30613
    );
    color:#fff;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
}

.services-grid > div{
    min-height:75px;
    padding:10px 20px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:13px;
}


/* SUCURSALES */

.branches{
    padding:72px 0 82px;
    background:#f5f5f5;
}

.branches-title{
    margin-bottom:36px;
    text-align:center;
}

.branches-title h2{
    margin-top:7px;
    font-size:40px;
}

.branches-title h2 strong{
    color:var(--red);
}

.branch-grid{
    max-width:1100px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.branch-card{
    overflow:hidden;
    border-radius:19px;
    background:#fff;
    box-shadow:0 18px 42px rgba(0,0,0,.12);
}

.branch-image{
    height:270px;
    position:relative;
}

.branch-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.branch-city{
    position:absolute;
    left:20px;
    bottom:18px;
    color:#fff;
    font-weight:900;
}

.branch-info{
    padding:24px;
}

.branch-label{
    color:var(--red);
    font-size:10px;
    font-weight:900;
}

.branch-info h3{
    margin:8px 0 12px;
}

.branch-info p{
    color:#555;
    line-height:1.65;
}

.branch-phone{
    margin-top:18px;
    padding:13px 15px;
    border-radius:10px;
    background:#f5f5f5;
}

.branch-phone span{
    display:block;
    color:#666;
    font-size:10px;
}

.branch-phone strong{
    display:block;
    margin-top:4px;
}

.branch-actions{
    margin-top:20px;
    display:flex;
    gap:10px;
}

.branch-map-button,
.branch-whatsapp-button{
    min-height:47px;
    padding:0 17px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    border-radius:8px;
    color:#fff;
    font-size:11px;
    font-weight:900;
}

.branch-map-button{
    background:#151515;
}

.branch-whatsapp-button{
    background:#25d366;
}

.branch-map{
    height:280px;
}

.branch-map iframe{
    width:100%;
    height:100%;
}


/* FOOTER */

.footer{
    padding:48px 0 18px;
    background:#0e0e0e;
    color:#fff;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.4fr .8fr 1fr;
    gap:55px;
}

.footer-brand img{
    width:190px;
    height:64px;
    padding:5px;
    object-fit:contain;
    background:#fff;
    border-radius:8px;
}

.footer-slogan{
    margin-top:15px;
    font-weight:800;
}

.footer-description{
    margin-top:10px;
    color:#888;
    font-size:12px;
    line-height:1.7;
}

.footer-column > strong{
    display:block;
    margin-bottom:18px;
}

.footer-column > a{
    display:block;
    margin-bottom:10px;
    color:#999;
}

.footer-branch{
    margin-bottom:23px;
}

.footer-branch span{
    display:block;
    font-weight:800;
}

.footer-branch small{
    display:block;
    margin:5px 0 7px;
    color:#888;
}

.footer-branch a{
    color:#25d366;
    font-weight:800;
}

.footer-bottom{
    margin-top:35px;
    padding-top:20px;
    display:flex;
    justify-content:space-between;
    border-top:1px solid #333;
}

.copyright,
.webmaster{
    color:#777;
    font-size:11px;
}

.webmaster{
    display:flex;
    gap:7px;
}

.webmaster strong{
    color:#fff;
}


/* WHATSAPP FLOTANTE */

.whatsapp-floating{
    position:fixed;
    right:22px;
    bottom:22px;
    z-index:9999;
    min-height:62px;
    padding:8px 18px 8px 9px;
    display:flex;
    align-items:center;
    gap:11px;
    border-radius:50px;
    background:#25d366;
    color:#fff;
    box-shadow:0 12px 35px rgba(0,0,0,.30);
}

.whatsapp-icon{
    width:46px;
    height:46px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:#fff;
    color:#25d366;
    font-size:29px;
}

.whatsapp-text{
    font-weight:900;
}

.whatsapp-text small{
    display:block;
    font-size:10px;
}


/* TABLET */

@media(max-width:1100px){

    .menu{
        display:none;
    }

    .menu-toggle{
        display:block;
    }

    .menu.open{
        position:absolute;
        top:88px;
        left:0;
        width:100%;
        padding:18px 5%;
        display:flex;
        flex-direction:column;
        align-items:flex-start;
        background:#fff;
    }

    .menu.open > a{
        width:100%;
        height:auto;
        padding:14px 0;
    }

    .rates-track{
        grid-auto-columns:calc((100% - 22px)/2);
    }

    .calculator-grid{
        grid-template-columns:1fr 1fr;
    }

    .document-grid{
        grid-template-columns:1fr 1fr;
    }

    .experience-benefits{
        grid-template-columns:repeat(3,1fr);
    }

    .services-grid{
        grid-template-columns:1fr 1fr;
    }

}


/* CELULAR */

@media(max-width:650px){

    .container{
        width:90%;
    }

    .topbar{
        display:none;
    }

    .header,
    .nav{
        height:75px;
    }

    .brand{
        width:150px;
        flex-basis:150px;
    }

    .brand img{
        width:150px !important;
        height:50px !important;
    }

    .language-switcher,
    .btn-whatsapp{
        display:none;
    }

    .menu-toggle{
        display:block;
    }

    .menu.open{
        top:75px;
        max-height:calc(100vh - 75px);
        overflow-y:auto;
    }


    /* IDIOMAS */

    .mobile-language-bar{
        display:block;
        background:#fff;
        border-bottom:1px solid #e2e2e2;
        box-shadow:0 5px 14px rgba(0,0,0,.08);
    }

    .mobile-language-inner{
        padding:9px 0 11px;
    }

    .mobile-language-title{
        margin-bottom:7px;
        display:flex;
        justify-content:center;
        gap:6px;
        color:#777;
        font-size:9px;
        font-weight:900;
        letter-spacing:2px;
    }

    .mobile-language-options{
        display:grid;
        grid-template-columns:repeat(3,1fr);
        gap:7px;
    }

    .mobile-language-options a{
        min-height:49px;
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        border:1px solid #ddd;
        border-radius:9px;
        font-size:10px;
        font-weight:800;
    }

    .mobile-language-options a.active{
        border-color:var(--red);
        background:var(--red);
        color:#fff;
    }

    .language-flag{
        font-size:19px;
    }


    /* HERO */

    .hero-main,
    .hero-main-content{
        height:470px;
    }

    .hero-copy h1{
        font-size:41px;
    }

    .hero-copy > p{
        font-size:16px;
    }

    .hero-points{
        display:grid;
        gap:10px;
    }


    /* TASAS */

    .rates-track{
        grid-auto-columns:88%;
    }

    .flag{
        height:200px;
    }

    .carousel-btn.left{
        left:-10px;
    }

    .carousel-btn.right{
        right:-10px;
    }


    /* CALCULADORA */

    .calculator-card{
        padding:22px 18px;
    }

    .calculator-grid{
        grid-template-columns:1fr;
    }

    .calculator-grid select,
    .calculator-grid input,
    .btn-calc{
        height:58px;
        width:100%;
    }


    /* REQUISITOS */

    .requirements-section{
        padding:60px 0;
    }

    .requirements-heading{
        text-align:left;
    }

    .requirements-heading h2{
        font-size:32px;
    }

    .requirements-intro{
        padding:18px;
    }

    .requirements-grid{
        grid-template-columns:1fr;
    }

    .requirement-card-content{
        padding:19px 17px;
    }

    .requirement-level-head{
        display:block;
    }

    .requirement-usd{
        display:inline-block;
        margin-bottom:10px;
    }

    .document-grid{
        grid-template-columns:1fr;
    }

    .requirements-help{
        display:block;
    }

    .requirements-help-buttons{
        margin-top:20px;
    }


    /* NOSOTROS */

    .about-clean{
        text-align:left;
    }

    .about-clean h2{
        font-size:34px;
    }


    /* EXPERIENCIA */

    .experience-heading{
        text-align:left;
    }

    .experience-grid{
        grid-template-columns:1fr;
    }

    .experience-image{
        height:250px;
    }

    .experience-content{
        grid-template-columns:1fr;
    }

    .experience-benefits{
        grid-template-columns:1fr;
    }


    /* SERVICIOS */

    .services-grid{
        grid-template-columns:1fr;
    }


    /* SUCURSALES */

    .branch-grid{
        grid-template-columns:1fr;
    }

    .branch-actions{
        display:grid;
        grid-template-columns:1fr 1fr;
    }


    /* FOOTER */

    .footer-grid{
        grid-template-columns:1fr;
    }

    .footer-bottom{
        flex-direction:column;
        gap:12px;
    }


    /* WHATSAPP */

    .whatsapp-floating{
        right:14px;
        bottom:14px;
        width:58px;
        height:58px;
        min-height:58px;
        padding:6px;
        display:grid;
        place-items:center;
        border-radius:50%;
    }

    .whatsapp-text{
        display:none;
    }

}