/* ---------------------------------------- 
   0) RESET general y estilos base
   ---------------------------------------- */
   html, body {
    overflow-x: hidden;       /* Evita scroll horizontal */
    max-width: 100%;
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue", Arial, sans-serif;
    color: #333;
  }
  
  :root {
    --green-dark: #0f5f33;
    --green-light: #36b257;
    --yellow: #fec81a;
    --footer-shape: #95C83D;
  }
  
  * {
    box-sizing: border-box;
  }
  
  /* ------------- 
     BOTONES FIJOS 
     ------------- */
  .btn-call {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--green-light);
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 1100;
  }
  .btn-call:hover {
    background: #2ea544;
  }
  .btn-calculator {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: var(--footer-shape);
    color: #fff;
    padding: .5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: .9rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 1100;
  }
  
  /* ----- 
     HEADER 
     ----- */
  header.bg-white {
    background: #fff;
    padding: 0.75rem 1rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #e5e5e5;
    z-index: 1000;
  }
  header .container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
  }
  header .container img {
    height: 40px;
  }
  
  /* ----- 
     HERO 
     ----- */
  /* 1) Contenedor principal del Hero */
  .hero-section {
    position: relative;
    background: none;
    height: 650px;
    min-height: 600px;
    overflow-x: hidden;    /* Bloquea scroll horizontal */
    overflow-y: hidden;
  }
  
  /* 2) Imagen de fondo (hero-bg) con overlay oscuro */
  .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("../assets/images/hero.jpg") center/cover no-repeat;
    mix-blend-mode: multiply;
    z-index: 1;
  }
  .ratio.ratio-16x9 {
  height: 100%;
}
.ratio.ratio-16x9 iframe {
    border-radius: 15px;
}
  /* 3) El .container ocupa 100% de ancho y altura del hero, sin padding lateral */
    /* .hero-section .container {
      position: relative;
      width: 100%;
      height: 100%;
      max-width: 100% !important;
      padding-left: 0;
      padding-right: 0;
    } */
  
  /* 4) La fila se convierte en flex para centrar verticalmente */
  .hero-section .row {
    display: flex;
    align-items: center;      /* Centrado vertical */
    justify-content: space-between;
    height: 100%;
    margin: 0;                /* Sin márgenes predeterminados */
  }
  
  /* 5) Cada columna ocupa el 50% exacto y sin padding lateral */
  .hero-section .row > .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 0;
    padding-right: 0;
  }
  
  /* 6) Columna de TEXTO (izquierda) */
  .hero-text {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-left: 4rem;   /* Ajusta para igualar margen del diseño */
    padding-right: 2rem;
  }
  
  .hero-text h1 {
    font-size: 50px;
    text-align: right;
    text-transform: uppercase;
    font-weight: 900;
    word-wrap: break-word;
  }
  
  .hero-text p {
    color: #fff;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    max-width: 80%;         /* Evita líneas excesivamente largas */
  }
  p.p-text-site {
    color: #252525;
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
}
.hero-text a.btn-hero {
    background: var(--footer-shape);
    color: #000;
    border: none;
    font-size: 18px;
    font-weight: 600;
    padding: 16px 24px 16px 24px;
    width: fit-content;
    font-family: 'Inter', sans-serif;
    border-radius: 30px;
}
.container-btn-mas {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    padding-top: 2rem;
}
  
  /* 7) Columna del SLIDER (derecha) */
  .hero-section .col-lg-6:last-child {
    display: flex;
    justify-content: center;  /* Centrado horizontal */
    align-items: center;      /* Centrado vertical */
    position: relative;
  }
  
  /* 8) Contenedor del slider: ocupa 80% ancho de su columna (desktop), sin desbordar */
  .slider-container {
    position: relative;
    width: 80%;
    max-width: 700px;   /* Máximo ancho en desktop */
    overflow: hidden;   /* Si la imagen crece, queda recortada */
    z-index: 2;
  }
  
  /* 9) Carrusel (#heroCarousel) a 100% ancho del contenedor */
  #heroCarousel {
    width: 100%;
  }
  
  /* 10) Cada imagen dentro del carousel */
  .carousel-inner img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }
  
  /* 11) Indicadores (“dots”) centrados */
  .carousel-indicators {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: .5rem;
    z-index: 3;
  }
  .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    border: none;
  }
  .carousel-indicators .active {
    background-color: #fff;
  }
  
  /* 12) Botones prev/next del carousel */
  .carousel-control-prev,
  .carousel-control-next {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    opacity: 1;
    border: none;
    z-index: 3;
    position: static;
  }
.relative {
    position: relative;
    margin-top: 20%;
    display: flex;
    gap: 20px;
    justify-content: end;
    align-items: center;
}
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-image: none;
    font-size: 1.2rem;
    color: #1F1F1F;
  }
  .carousel-control-prev-icon::before { content: "<"; }
  .carousel-control-next-icon::before { content: ">"; }
  
  /* 13) OLA CURVA justo debajo del Hero */
  .hero-wave {
    position: absolute;
    bottom: -50px;    /* Bajamos la curva 50px */
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 3;       /* Debe quedar encima del slider */
    margin-top: 0;    /* Sin margen negativo */
  }
  
  .hero-wave svg {
    width: 100%;
    height: 150px;    /* Altura original de la curva */
    display: block;
  }
  
  /* 14) “Conoce más” centrado sobre la curva (desktop) */
  .hero-section .text-center {
    position: absolute;
    bottom: 16px;     /* Ubicación ligeramente arriba de la curva */
    width: 100%;
    z-index: 4;       /* Siempre encima de la curva */
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-section .text-center a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
  }
  .hero-section .text-center i {
    margin-top: .5rem;
  }
  
  /* ===== Responsive HERO para tablet (antes de móvil) ===== */
  @media (max-width: 1199.98px) {
    .hero-section {
      height: 550px;
      min-height: 500px;
    }
    .hero-text h1 {
      font-size: 2.75rem;
    }
    .slider-container {
      width: 85%;
    }
    .carousel-inner img {
      max-height: 450px;
    }
  }
  
  @media (max-width: 991.98px) {
    .hero-section {
      height: 500px;
      min-height: 450px;
    }
    .hero-text h1 {
      font-size: 2.5rem;
    }
    .carousel-inner img {
      max-height: 400px;
    }
  }
  
  /* ===== Responsive HERO para móvil (0–767.98px) ===== */
  @media (max-width: 767.98px) {
  
    /* 1) Evita scroll horizontal */
    html, body {
      overflow-x: hidden;
    }
    .hero-section {
      overflow-x: hidden;
    }
  
    /* 2) Ajusta altura y padding general del Hero */
    .hero-section {
      height: auto;         /* Ajuste automático */
      padding-top: 1rem;    /* Menos “aire” arriba */
      padding-bottom: 1rem; /* Menos “aire” abajo */
    }
  
    /* 3) Columna de texto y slider en bloque completo */
    .hero-section .row {
      flex-direction: column;       /* Stack vertical */
      justify-content: flex-start;  /* Empuja hacia arriba */
      align-items: stretch;         /* Ocupa todo el ancho */
      height: auto;
    }
    .hero-section .col-lg-6 {
      flex: 0 0 100%;
      max-width: 100%;
      padding-left: 0 !important;   /* Quita todo padding lateral */
      padding-right: 0 !important;
    }
  
    /* 4) TEXTO del Hero: ocupa todo el ancho, con márgenes extra */
    .hero-text {
      text-align: center;
      margin-top: 4rem;      /* ↑ Más separación desde el tope */
      margin-bottom: 3rem;   /* ↑ Espacio grande antes del slider */
      padding-left: 1rem;    /* Un poquito de padding lateral para respirar */
      padding-right: 1rem;
      justify-content: flex-start;
    }
    .hero-text h1 {
      color: #fff;
      font-size: 2rem;         /* Tamaño legible en móvil */
      line-height: 1.3;
      margin-bottom: 1.5rem;   /* ↑ Espacio extra antes del botón */
      width: 100%;             /* Para que ocupe todo el ancho disponible */
      text-align: center;
    }
    .hero-text p {
      display: none; /* Ocultamos el párrafo en móvil */
    }
    .hero-text a.btn-hero {
      width: 80%;
      max-width: 260px;       /* Limita ancho del botón */
      margin: 0 auto;         /* Centrar horizontalmente */
      padding: .75rem 1rem;   /* Botón compacto */
      font-size: 1rem;
    }
    /* 5) Quitar la línea amarilla debajo del botón */
    .hero-text a.btn-hero::after {
      display: none;
    }
  
    /* 6) SLIDER: ocupa todo el ancho posible y con márgenes verticales */
    .slider-container {
      width: calc(100% - 2rem); /* 1rem de padding a cada lado */
      max-width: 400px;         /* No más grande que 400px en móvil */
      margin: 0 auto 2.5rem;    /* Centrado + espacio inferior */
    }
    .carousel-inner img {
      width: 100%;
      max-height: 220px;        /* Altura recortada para que no desborde */
      object-fit: cover;
      border-radius: 8px;
    }
    .carousel-control-prev,
    .carousel-control-next {
      width: 32px;
      height: 32px;
      top: 50%;
      transform: translateY(-50%);
      background: #fff;
      opacity: 0.9;
    }
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      font-size: 1rem;
      color: var(--green-dark);
    }
  
    /* 7) “Conoce más” debajo de la curva blanca (igual que antes) */
    .hero-section .text-center {
      position: relative;
      bottom: auto;
      margin-top: -16px;     /* Para pegar “Conoce más” a la curva */
      width: 100%;
      color: #fff;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  
    /* 8) Elimina el gap extra antes de “Fale com a gente” */
    #features {
      margin-top: 0;  
    }
    #features .col-lg-6:last-child {
      padding-bottom: 0;  
    }
    .relative {
    justify-content: center;
}
  }
  
  /* -------- 
     FEATURES 
     -------- */
  #features {
    background: #f8f9fa;
    margin-top: 0;  /* Comienza justo tras la curva blanca */
  }
  #features h2 {
    color: var(--green-dark);
    font-weight: 600;
    margin-bottom: 1rem;
  }
  #features p {
    margin-bottom: 1.5rem;
  }
  #features .btn-success {
    background: #95C83D;
    color: #000;
    border: none;
    font-size: 18px;
    font-weight: 600;
    padding: 16px 24px 16px 24px;
    width: fit-content;
    font-family: 'Inter', sans-serif;
    border-radius: 30px;
  }
  #features img {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 8px;
  }
section#features {
    padding: 80px 0;
}
  /* ===== Responsive Features (0–767.98px) ===== */
  @media (max-width: 767.98px) {
    /* 1) Mostrar primero el texto + botón centrados */
    #features .col-lg-6:first-child {
      order: 1;
      width: 100%;
      padding: 0 1rem;
      text-align: center;
      margin-bottom: 1rem;
    }
    #features .col-lg-6:first-child p {
      margin-bottom: 1rem;
      max-width: 100%;
      font-size: 0.95rem;
    }
    #features .col-lg-6:first-child .btn-success {
      width: 100%;
      max-width: 240px;   /* Ajusta si quieres un botón más pequeño */
      margin: 0 auto 1rem;
    }
  
    /* 2) Luego mostrar imágenes full width */
    #features .col-lg-6:last-child {
      order: 2;
      width: 100%;
      padding: 0 1rem 0;  /* Evita padding inferior extra */
    }
    #features .col-lg-6:last-child img {
      width: 100%;
      display: block;
      margin-bottom: 0;   /* Elimina margen entre última imagen y sección siguiente */
    }
  
    /* 3) Reducir padding-top del contacto para eliminar gap */
    .contact-section {
      margin-top: 0;
    padding: 80px 20px !important;
    }
    section#features {
    padding: 50px 20px;
}
  }
  
  /* --------- 
     CONTACTO 
     --------- */
  .contact-section {
    background: #fff;
    padding: 80px 0;
  }
  .contact-text {
    position: relative;
    overflow: hidden;
    padding: 1rem;
  }
  .contact-text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../assets/images/pattern.png") no-repeat right center;
    background-size: 400px auto;
    opacity: .08;
    z-index: -1;
  }
.contact-text h2 {
    color: #2D6750;
    font-size: 40px;
    font-style: normal;
    font-weight: 900;
    line-height: 46px;
    margin-bottom: 25px;
}
  .contact-text p.discovery {
    color: #2D6750;
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
  }
  .contact-text .social-icons {
    display: flex;
    margin-top: .5rem;
  }
  .contact-text .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-right: .5rem;
    background: #fff;
    border-radius: 4px;
    color: var(--green-dark);
    font-size: 1.2rem;
  }
  
  #contact .form-label {
    font-weight: 600;
    color: var(--green-dark);
  }
  #contact .form-control,
  #contact .form-select {
    border: 1px solid #ddd;
    border-radius: 50px;
    background: #FFF;
    padding: 16px 16px;
    color: #C0C0C0;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    font-family: "Inter", sans-serif;
    margin-bottom: 30px;
    height: auto;
  }
  #contact .btn-success {
    border-radius: 30px;
    background: #2D6750;
    padding: 16px 24px;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: none;
  }
  textarea.form-control {
    border-radius: 20px !important;
}
  /* ----------------------------------------
     FOOTER AJUSTADO (solo la parte del footer)
     ---------------------------------------- */
     .footer {
      background: #2D6750;
      padding-top: 80px;
      padding-bottom: 2rem;
      position: relative;
      overflow: visible;
      margin-top: 5%;
  }
  
  .footer-container {
    position: relative;
    max-width: 1200px;    /* Centrado en pantallas grandes */
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
    overflow: visible;    /* Aseguramos que nada quede cortado */
  }
  
  /* Grid de columnas para escritorio */
  /* Reservamos 5 columnas: Canales / Entérate / SHAPE / Interés / Legal */
  .footer-cols {
    display: grid;
    grid-template-columns: 1fr 1fr auto 1fr 1fr;
    gap: 2rem;
    align-items: start;  /* Iniciamos contenido en la parte superior */
  }
  
  /* Columna 1: Canales de Atención */
  .footer-col h6,
  .footer-col a {
    margin: 0;
  }
  .footer-col h6 {
    color: var(--footer-shape);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: .75rem;
  }
  .footer-col a {
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: .5rem;
    font-size: .95rem;
  }
  .footer-col a:hover {
    text-decoration: underline;
  }
  
  /* .footer-col aplicado a cada columna de texto */
  .footer-col {
    /* De momento no agregamos padding extra para mantener alineación */
  }
  
  /* ==========================================================================================
     AJUSTES DE “SHAPE” CENTRAL (LOGO) PARA QUE NUNCA SE CORTE
     ========================================================================================== */
  .footer-brand.shape {
    background: url(https://s3.us-east-1.amazonaws.com/www.arclad.com.br/assets/images/ARCLAD-WEB-PROPUESTA-05.png) no-repeat center center;
    background-size: 100% 100%;
    padding: 30px;
    border-radius: 20px 20px 0 0;
    margin-top: -210px;
    z-index: 9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 410px;     /* Permitimos que el logo sobresalga si hiciera falta */
  }
  
  /* El logo dentro de la “shape” */
  .footer-brand.shape img {
    position: relative;
    z-index: 4;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  
  /* Íconos sociales dentro de la “shape” */
  .footer-brand.shape .social-icons {
    margin-top: 3.5rem;
    gap: 10px;
  }
  .footer-brand.shape .social-icons a {
    color: #2D6750;
    font-size: 1.2rem;
    padding: 15px 21px;
    background-color: #fff;
    border-radius: 10px;
  }
  
  /* =====================================
     SECCIÓN “SEDES” (menor ajuste en desktop y mobile)
     ===================================== */
  .sedes {
    margin-top: 3rem; /* Separación suficiente respecto al grid principal */
  }
  .sedes h6 {
    color: var(--footer-shape);
    font-size: .85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }
  .sedes p {
    font-size: .9rem;
    line-height: 1.4;
    margin: 0;
  }
  
  /* =======================================
     AJUSTES RESPONSIVE (0–767.98px)
     ======================================= */
  @media (max-width: 767.98px) {
    /* Footer responsive: todo centrado, sin que nada se corte */
    .footer,
    .footer-container {
      overflow: visible;
    }
  
    /* Apilar las “columnas” en una sola, centradas */
    .footer-cols {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 1.5rem; /* Un poco más de espacio vertical en móvil */
    }
    .footer-col {
      margin-bottom: 1rem;
    }
    .footer-col h6 {
      margin-bottom: 1rem;
    }
    .footer-col a {
      margin-bottom: .75rem;
    }
  
    /* Ajustar la “shape” del logo en móvil para que no quede pegada arriba */
    .footer-brand.shape {
        grid-column: auto;
        margin: 3rem auto -0.5rem;
        padding: 1rem 1rem;
        max-width: 100%;
        width: 100%;
        height: auto;
        background: none;
    }
    .footer-brand.shape::before {
      width: 30px;
      height: 30px;
    }
  
    /* Sección “Sedes” en móvil: apilar y centrar texto */
    .sedes {
      margin-top: 2rem;
    }
    .sedes h6 {
      text-align: center;
      margin-bottom: 1rem;
    }
    .sedes .row {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .sedes .col-md-4 {
      max-width: 80%;
      text-align: center;   /* Centrar texto de cada sede */
      margin-bottom: 1rem;
    }
  }
    /* =======================================
     ESTILOS THANK YOU PAGE
     ======================================= */
     h1.title-thankyou{
      color:#2D6750;
      font-family: "Inter", sans-serif;
     }
.region.region-content h1 {
    display: none;
}
form#webform-submission-formulario-landing-brasil-add-form {
    display: flex;
    flex-wrap: wrap;
    column-gap: 5px;
}
form#webform-submission-formulario-landing-brasil-add-form div {
    width: calc(50% - 20px);
}