/* ===========================================================
   FONTS
=========================================================== */
@font-face{ font-family:'Lato'; src:url('../fonts/Lato-Light.ttf'); font-weight:300; font-style:normal; font-display:swap; }
@font-face{ font-family:'Lato'; src:url('../fonts/Lato-Regular.ttf'); font-weight:400; font-style:normal; font-display:swap; }
@font-face{ font-family:'Lato'; src:url('../fonts/Lato-Italic.ttf'); font-weight:400; font-style:italic; font-display:swap; }
@font-face{ font-family:'Lato'; src:url('../fonts/Lato-Bold.ttf'); font-weight:700; font-style:normal; font-display:swap; }
@font-face{ font-family:'Lato'; src:url('../fonts/Lato-Black.ttf'); font-weight:900; font-style:normal; font-display:swap; }
@font-face{ font-family:'Montserrat'; src:url('../fonts/Montserrat-Variable.ttf'); font-weight:100 900; font-style:normal; font-display:swap; }
@font-face{ font-family:'Montserrat'; src:url('../fonts/Montserrat-Italic-Variable.ttf'); font-weight:100 900; font-style:italic; font-display:swap; }

/* ===========================================================
   TOKENS
=========================================================== */
:root{
  --navy-950:#0c1526;
  --navy-900:#101828;
  --navy-800:#182541;
  --navy-700:#22345a;
  --red:#e13c2c;
  --red-dark:#b82c1f;
  --orange:#f0592f;
  --gray-50:#F9FAFB;
  --gray-100:#eef0f3;
  --gray-200:#e2e5ea;
  --ink:#22262d;
  --ink-soft:#4A5565;
  --white:#ffffff;

  --font-head:'Montserrat', sans-serif;
  --font-body:'Lato', sans-serif;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button, select{ font-family:inherit; }

.container{
  max-width:1240px;
  margin:0 auto;
  padding:0 32px;
}
@media (max-width:640px){ .container{ padding:0 20px; } }

section{ position:relative; }
.section-pad{ padding:88px 0; }
@media (max-width:768px){ .section-pad{ padding:10px 0 40px 0; }
.mt-30xs{
    margin-top: 30px;
}}
.bg-gray{ background:var(--gray-50); }
.bg-navy{ background:var(--navy-900); color:var(--white); }

h1,h2,h3,h4{
  font-family:var(--font-head);
  font-weight:800;
  margin:0;
  line-height:1.2;
  color:var(--navy-900);
}
.eyebrow{
  font-family:var(--font-body);
  font-size:36px;
  font-weight:600;
  color:var(--red)!important;
}
.section-heading{
  text-align:center;
  max-width:720px;
  margin:0 auto 48px;
}
.section-heading h2{
  font-size:clamp(1.6rem,3vw,2.1rem);
  color:var(--navy-900);
  margin-top:8px;
  font-family:var(--font-body);
  margin-top: 50px;
  font-weight: 600;
}
.section-heading p{
  margin-top:12px;
  color:var(--ink-soft);
  font-size:17px;
  font-family:var(--font-head);
  font-weight: 400;
}
.section-heading.on-dark h2, .section-heading.on-dark{ color:var(--white); }
.section-heading.on-dark p{ color:#b7c0d1; }

.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 28px;
  font-family:var(--font-head);
  font-weight:700;
  font-size:0.86rem;
  border-radius:6px;
  border:2px solid transparent;
  transition:all .25s ease;
  cursor:pointer;
  white-space:nowrap;
  font-weight: 400;
}
.btn--red{
  background:var(--red);
  color:var(--white);
  border-color:var(--red);
  box-shadow:0 8px 20px rgba(225,60,44,0.28);
}
.icono-cotizar{ width:18px; height:18px; }
.icono-whatsapp{ width:18px; height:18px; }
.btn--red:hover{ background:var(--red-dark); border-color:var(--red-dark); }
.btn--outline{
  background: #000067;
  color:var(--white);
  border-color:#000067;
}
.btn--outline:hover{ background:rgba(255,255,255,0.12); border-color:var(--white); }
.btn--navy{
  background:var(--navy-900);
  color:var(--white);
  border-color:var(--navy-900);
}
.btn--navy:hover{ background:var(--navy-800); }
.lato{
  font-family:var(--font-body);
}
.montserrat{
  font-family:var(--font-head);
}
/* ===========================================================
   HEADER / NAV
=========================================================== */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:var(--white);
  border-bottom:1px solid var(--gray-200);
}
.site-header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:78px;
}
.brand{ display:flex; flex-direction:column; line-height:1; }
.brand-name{
  font-family:var(--font-head);
  font-weight:900;
  font-size:1.7rem;
  letter-spacing:0.01em;
  color:var(--navy-900);
}
.brand-logo{ width:120px; height:auto; object-fit:contain; }
.brand-name span{ color:var(--red); }
.brand-sub{
  margin-top:2px;
  font-size:0.52rem;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--ink-soft);
  font-weight:700;
}

.main-nav{ display:flex; align-items:center; gap:2px; }
.main-nav > ul{ display:flex; align-items:center; gap:4px; }
.main-nav > ul > li{ position:relative; }
.main-nav > ul > li > a, .main-nav > ul > li > button{
  display:flex;
  align-items:center;
  gap:6px;
  padding:14px 16px;
  font-family:var(--font-head);
  font-size:0.86rem;
  font-weight:400;
  color:var(--navy-900);
  background:none;
  border:none;
  cursor:pointer;
  text-transform: capitalize;
}
.main-nav > ul > li > a:hover, .main-nav > ul > li.open > button{ color:var(--red); }
.caret{ font-size:1rem; transition:transform .25s ease; }
.main-nav > ul > li.open .caret{ transform:rotate(180deg); }

.dropdown{
  position:absolute;
  top:100%; left:0;
  min-width:260px;
  background:var(--white);
  border:1px solid var(--gray-200);
  border-radius:10px;
  box-shadow:0 20px 40px rgba(16,27,48,0.14);
  padding:10px;
  opacity:0;
  visibility:hidden;
  transform:translateY(8px);
  transition:all .22s ease;
  z-index:50;
}
.main-nav > ul > li.open .dropdown{
  opacity:1; visibility:visible; transform:translateY(0);
}
.dropdown a{
  display:block;
  padding:10px 14px;
  border-radius:6px;
  font-size:0.88rem;
  font-weight:400;
  color:var(--ink);
}
.dropdown a:hover{ background:var(--gray-50); color:var(--red); }

.header-right{ display:flex; align-items:center; gap:18px; }
.lang-flags{ display:flex; gap:8px; }
.lang-flags button{
  width:26px; height:18px;
  border-radius:3px;
  border:1px solid var(--gray-200);
  background:var(--gray-100);
  padding:0;
  font-size:0.6rem;
  font-weight:800;
  color:var(--ink-soft);
  cursor:pointer;
  display:flex; align-items:center; justify-content:center;
}
.lang-flags button.active{ background:var(--navy-900); color:var(--white); border-color:var(--navy-900); }

.mobile-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  padding:8px;
}
.mobile-toggle span{ width:24px; height:2px; background:var(--navy-900); }

@media (max-width:980px){
  .main-nav{ display:none; }
  .header-right .lang-flags{ display:none; }
  .mobile-toggle{ display:flex; }
}

/* Mobile menu panel */
.mobile-panel{
  position:fixed; inset:0;
  z-index:200;
  background:var(--white);
  color:#101828;
  padding:28px 24px;
  overflow-y:auto;
  display:none;
}
.mobile-panel.is-open{ display:block; }
.mobile-panel-head{
  display:flex; justify-content:space-between; align-items:center;
  margin-bottom:28px;
}
.mobile-panel-close{ background:none; border:none; color:#000066; font-size:1.6rem; }
.mobile-panel ul{ margin-bottom:18px; }
.mobile-panel > ul > li > a, .mobile-panel details summary{
  font-family:var(--font-head);
  font-weight:400;
  font-size:1.15rem;
  padding:14px 0;
  border-bottom:1px solid rgba(255,255,255,0.12);
  display:block;
  cursor:pointer;
  color:#000067;
  list-style:none;
}
.mobile-panel details summary::-webkit-details-marker{ display:none; }
.mobile-panel details[open] summary{ color:var(--red); font-weight: 600;}
.mobile-panel details ul{ padding-left:14px; }
.mobile-panel details a{
  display:block;
  padding:10px 0;
  font-size:1.15rem;
  color:#000066;
}

/* ===========================================================
   HERO
=========================================================== */
.hero{
  position:relative;
  min-height:520px;
  display:flex;
  align-items:center;
  background-size:cover;
  background-position:center;
  color:var(--white);
  overflow:hidden;
  height: 80vh;
}
.hero::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(321deg, rgb(69 103 165 / 0%) 10%, rgb(102 134 232 / 0%) 45%, rgb(164 101 132 / 0%) 100%);
}
.hero-inner{ position:relative; z-index:2; max-width:640px; padding:64px 0; text-align: center;}
.hero-inner h1{
  color:var(--white);
  font-size:clamp(2rem,4vw,2.9rem);
  margin-bottom:18px;
  font-family:var(--font-body);
}
.hero-inner p{
  font-size:1.08rem;
  color:#dbe0ea;
  margin-bottom:32px;
  line-height:1.6;
  font-family:var(--font-head);
  font-weight:300;
}
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; justify-content: center;}
.whatsapp-fab{
  position:fixed;
  bottom:26px; right:26px;
  width:54px; height:54px;
  border-radius:50%;
  background:#25D366;
  color:var(--white);
  display:flex; align-items:center; justify-content:center;
  z-index:80;
  box-shadow:0 10px 24px rgba(0,0,0,0.25);
}

/* ===========================================================
   INTRO SPLIT
=========================================================== */
.intro-split{
  display:grid;
  grid-template-columns:0.92fr 1.08fr;
  gap:64px;
  align-items:center;
}
@media (max-width:860px){ .intro-split{ grid-template-columns:1fr; gap:24px; } }
.intro-split h2{
  font-size: 40px;
  color: var(--red);
  font-weight: 600;
}
.intro-split .body-copy p{ margin-bottom:16px; font-family: var(--font-head); font-size: 17px; color: #000;}
.body-copy{ color:var(--ink-soft); line-height:1.85; font-size:1rem; }

/* ===========================================================
   FEATURE CARDS
=========================================================== */
.cards-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
@media (max-width:860px){ .cards-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:600px){ .cards-grid{ grid-template-columns:1fr; } .btn { width: 240px; text-align: center; }}
.feat-card{
  background:var(--white);
  border:1px solid var(--gray-200);
  border-radius:12px;
  padding:32px 28px;
  transition:all .3s ease;
}
.feat-card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 34px rgba(16,27,48,0.09);
  border-color:transparent;
}
.feat-card .icon-wrap{
  width:52px; height:52px;
  margin-bottom:18px;
  display:flex; align-items:center; justify-content:center;
}
.feat-card .icon-wrap img, .feat-card .icon-wrap svg{ width:100%; height:100%; object-fit:contain; }
.feat-card h4{
  font-size:1.05rem;
  margin-bottom:8px;
  color:var(--navy-900);
  font-family:var(--font-body);
  font-weight: 600;
  font-size: 18px;
}
.feat-card p{color:var(--ink-soft); line-height:1.6; margin:0; font-family:var(--font-head); font-weight: 400; font-size: 15px; }

/* ===========================================================
   CERTIFICATIONS
=========================================================== */
.certs-row{
  display: grid;
  gap: 0px;
  grid-template-columns: 1fr 1fr 1fr;
  width: 60%;
  margin: 0 auto;
}
.cert-item{ display: flex; align-items: center; flex-direction: column; text-align: center; }
.cert-item img{ height:100px; width:auto; margin:0 auto 14px; object-fit:contain; filter:grayscale(15%); }
.cert-item span{ font-size:14px; color:#000; line-height:1.4; display:block; family:var(--font-head); font-weight: 400; }

/* ===========================================================
   PROCESS
=========================================================== */
.process-row{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:32px;
  position:relative;
  margin-top: 100px;
}
@media (max-width:860px){ .process-row{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:520px){ .process-row{ grid-template-columns:1fr;margin-top: 40px; } }
.process-item{ text-align:center; }
.process-num{
  width:64px; height:64px;
  margin:0 auto 20px;
  border-radius:50%;
  background:#000066;
  color:var(--white);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-body);
  font-weight:600;
  font-size:20px;
  position:relative;
}
.process-item h4{ font-size:1rem; margin-bottom:8px; color:#000; font-family:var(--font-head); font-weight: 600; }
.process-item p{ font-size:0.88rem; color:#000; line-height:1.6; font-family:var(--font-head); font-weight: 400; }

/* ===========================================================
   CLIENTS: image carousel + logo row
=========================================================== */
.img-carousel{
  overflow:hidden;
  position:relative;
  margin-top:8px;
  -webkit-mask-image:linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
          mask-image:linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.img-carousel-track{
  display:flex;
  gap:16px;
  width:max-content;
  animation:scroll-left 60s linear infinite;
}
.img-carousel:hover .img-carousel-track{ animation-play-state:paused; }
.img-carousel-track img{
  height:220px; width:320px;
  object-fit:cover;
  border-radius:8px;
  flex:0 0 auto;
}
@keyframes scroll-left{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}
.clients-logos{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
  gap:20px;
  margin-top:48px;
}
.clients-logos img{
  height:55px; width:auto;
  max-width:120px;
  object-fit:contain;
  transition:all .3s ease;
}
.clients-logos img:hover{ filter:grayscale(0%); opacity:1; }
/*==========================
Carrusel logos
==========================*/

.logo-carousel{

    overflow:hidden;

    width:100%;

    margin-top:40px;

}

.logo-carousel-track{

    display:flex;

    gap:60px;

    width:max-content;

    animation:logos 40s linear infinite;

    align-items:center;

}

.logo-carousel-track img{

    height:100px;

    width:auto;

    object-fit:contain;

    opacity:.8;

    transition:.3s;

}

.logo-carousel-track img:hover{

    opacity:1;

    transform:scale(1.08);

}

@keyframes logos{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}



/*==========================
Viewport / Lightbox
==========================*/

.lightbox{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.92);

    display:flex;

    align-items:center;

    justify-content:center;

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:9999;

}

.lightbox.show{

    opacity:1;

    visibility:visible;

}

.lightbox img{

    max-width:90%;

    max-height:85vh;

    border-radius:8px;

}

.lightbox button{

    position:absolute;

    background:none;

    border:none;

    color:#fff;

    cursor:pointer;

}

.lightbox-close{

    top:20px;

    right:35px;

    font-size:42px;

}

.lightbox-prev{

    left:30px;

    font-size:55px;

}

.lightbox-next{

    right:30px;

    font-size:55px;

}

.img-carousel img{

    cursor:pointer;

    transition:.3s;

}

.img-carousel img:hover{

    transform:scale(1.03);

}
@media (prefers-reduced-motion: reduce){
  .img-carousel-track{ animation:none; }
}

/* ===========================================================
   QUOTE FORM
=========================================================== */
.quote-section{ background:#000066; color:var(--white); }
.quote-form{
  max-width:820px;
  margin:0 auto;
  background:var(--navy-800);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:14px;
  padding:40px;
}
@media (max-width:640px){ .quote-form{ padding:26px 20px; } 
.section-heading h2 {margin-top: 30px;margin-bottom: 30px;}
.clients-logos {margin-top: 30px;}
.img-carousel {margin-top: 30px;}}
.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  margin-bottom:20px;
}
@media (max-width:640px){ .form-row{ grid-template-columns:1fr; gap:0; } }
.field{ margin-bottom:20px; }
.form-row .field{ margin-bottom:0; }
.field label{
  display:block;
  font-size:0.82rem;
  font-weight:700;
  margin-bottom:8px;
  color:#c7cede;
}
.field label .req{ color:var(--red); }
.field input, .field textarea, .field select{
  width:100%;
  padding:13px 16px;
  border-radius:7px;
  border:1px solid rgba(255,255,255,0.18);
  background:rgba(255,255,255,0.05);
  color:var(--white);
  font-family:var(--font-body);
  font-size:0.95rem;
}
.field input::placeholder, .field textarea::placeholder{ color:#8a92a6; }
.field input:focus, .field textarea:focus, .field select:focus{
  outline:none;
  border-color:var(--red);
  background:rgba(255,255,255,0.08);
}
.field textarea{ min-height:110px; resize:vertical; }
.field select{ cursor:pointer; }
.field select option{ color:var(--ink); }
.form-submit{
  width:100%;
  justify-content:center;
  padding:16px;
  font-size:0.92rem;
  margin-top:6px;
}
.form-note{
  margin-top:14px;
  font-size:0.88rem;
  text-align:center;
  min-height:1.2em;
}
.form-note.success{ color:#7fd99a; }
.form-note.error{ color:#f2a29a; }

/* ===========================================================
   FOOTER
=========================================================== */
.site-footer{
  color:#aab2c4;
  padding:56px 0 22px;
}
.footer-top{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap:40px;
  padding-bottom:36px;
  border-bottom:1px solid rgba(255,255,255,0.08);
}
@media (max-width:860px){ .footer-top{ grid-template-columns:1fr; text-align:center; } }
.footer-brand .brand-name{ color:var(--white); }
.footer-brand p{ margin-top:14px; font-size:0.88rem; line-height:1.7; max-width:320px; }
@media (max-width:860px){ .footer-brand p{ margin-left:auto; margin-right:auto; } }
.footer-search{
  display:flex;
  margin-top:18px;
  border:1px solid #b82c1f87;
  border-radius:7px;
  overflow:hidden;
  max-width:280px;
}
@media (max-width:860px){ .footer-search{ margin-left:auto; margin-right:auto; }.brand-logo { width: 90px;margin: 0 auto; }.marginCero{margin:0;}.intro-split h2 {font-size: 30px;}
.certs-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
}
.footer-top {
  gap: 0px;
}
.section-heading {margin: 0 auto;}}
.footer-search input{
  flex:1;
  background:transparent;
  border:none;
  padding:10px 14px;
  color:var(--white);
  font-size:0.85rem;
}
.footer-search input::placeholder{ color:#7e879c; }
.footer-search button{
  background:var(--red);
  border:none;
  color:var(--white);
  padding:0 16px;
  cursor:pointer;
}
.footer-col h5{
  font-family:var(--font-body);
  color:var(--red);
  font-size:17px;
  margin-bottom:20px;
}
.footer-col li{ margin-bottom:12px; }
.footer-col a{ font-size:0.92rem; color: #000; }
.footer-social{ display:flex; gap:12px; margin-top:4px; }
.footer-social a{
  width:36px; height:36px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,0.2);
  display:flex; align-items:center; justify-content:center;
}
.footer-social a:hover{ background:var(--red); border-color:var(--red); }
.footer-bottom{
  padding-top:22px;
  text-align:center;
  font-size:0.8rem;
}

/* reveal on scroll */
.reveal{ opacity:0; transform:translateY(22px); transition:opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform:translateY(0); }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.001ms !important; transition-duration:.001ms !important; }
}




/* FORMULARIO DE CONTACTO*/
/* ==========================================
   FORMULARIO DE COTIZACIÓN
   ========================================== */

.cotizacion-form {
    width: 100%;
    box-sizing: border-box;
}

/* Filas de dos columnas */
.cotizacion-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 22px;
}

/* Grupo de campo */
.cotizacion-form .form-group {
    width: 100%;
    box-sizing: border-box;
}

.cotizacion-form .form-full {
    margin-bottom: 22px;
}

/* Labels */
.cotizacion-form label {
    display: block;
    margin-bottom: 10px;

    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
}

.cotizacion-form label span {
    color: #ef3b32;
}

/* Inputs, selects y textarea */
.cotizacion-form .form-input {
    width: 100%;
    box-sizing: border-box;

    height: 44px;
    padding: 0 15px;

    background-color: #253451;
    border: 1px solid #52617b;
    border-radius: 6px;

    color: #ffffff;
    font-family: inherit;
    font-size: 13px;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

/* Placeholder */
.cotizacion-form .form-input::placeholder {
    color: #a8b1c4;
    opacity: 1;
}

/* Focus */
.cotizacion-form .form-input:focus {
    border-color: #71819f;
    background-color: #293955;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.04);
}

/* Select */
.cotizacion-form select.form-input {
    appearance: auto;
    cursor: pointer;
}

/* Textarea */
.cotizacion-form textarea.form-input {
    height: 103px;
    min-height: 103px;

    padding: 14px 15px;

    resize: vertical;
    line-height: 1.5;
}

/* ==========================================
   BOTÓN
   ========================================== */

.cotizacion-form .form-submit {
    width: 100%;
    margin-top: 2px;
}

.cotizacion-form .btn-cotizacion {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 49px;

    padding: 0 20px;

    border: none;
    border-radius: 5px;

    background-color: #ef382f;
    color: #ffffff;

    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.2px;

    cursor: pointer;

    box-shadow: 0 8px 20px rgba(239, 56, 47, 0.20);

    transition:
        background-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.cotizacion-form .btn-cotizacion:hover {
    background-color: #dF2f28;

    transform: translateY(-1px);

    box-shadow: 0 10px 24px rgba(239, 56, 47, 0.28);
}

.cotizacion-form .btn-cotizacion:active {
    transform: translateY(0);
}

/* ==========================================
   MENSAJES DE CONTACT FORM 7
   ========================================== */

.cotizacion-form .wpcf7-not-valid-tip {
    margin-top: 5px;

    color: #ff7069;
    font-size: 11px;
}

.cotizacion-form .wpcf7-response-output {
    margin: 20px 0 0 !important;
    padding: 12px 15px !important;

    border-radius: 5px;

    font-size: 13px;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 700px) {

    .cotizacion-form .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    .cotizacion-form .form-full {
        margin-bottom: 20px;
    }

    .cotizacion-form .form-input {
        height: 46px;
    }

    .cotizacion-form textarea.form-input {
        height: 120px;
        min-height: 120px;
    }

    .cotizacion-form .btn-cotizacion {
        height: 50px;
        font-size: 14px;
    }
}