:root{
    --swiper-navigation-size:26px;
    --swiper-navigation-top-offset:50%;
    --swiper-navigation-sides-offset: 5%;
    --swiper-pagination-color: var(--swiper-theme-color);
    --swiper-pagination-left: auto;
    --swiper-pagination-right: 8px;
    --swiper-pagination-bottom: 8px;
    --swiper-pagination-top: auto;
    --swiper-pagination-fraction-color: inherit;
    --swiper-pagination-progressbar-bg-color: rgba(0, 0, 0, 0.25);
    --swiper-pagination-progressbar-size: 4px;
    --swiper-pagination-bullet-size: 8px;
    --swiper-pagination-bullet-width: 8px;
    --swiper-pagination-bullet-height: 8px;
    --swiper-pagination-bullet-inactive-color: #000;
    --swiper-pagination-bullet-inactive-opacity: 0.2;
    --swiper-pagination-bullet-opacity: 1;
    --swiper-pagination-bullet-horizontal-gap: 4px;
    --swiper-pagination-bullet-vertical-gap: 6px;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}
html, body {
  height: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
/* Aplicar a todo el sitio */
body {
  scroll-behavior: smooth; /* Scroll suave al navegar */
}

/* Definir el ancho del scrollbar */
::-webkit-scrollbar {
  width: 22px; /* Ancho del scrollbar vertical */
  height: 22px; /* Altura del scrollbar horizontal */
}

/* Estilo del track (fondo del scrollbar) */
::-webkit-scrollbar-track {
  background: #f4f4f4;
  border-radius: 6px; /* Bordes redondeados */
}

/* Estilo del thumb (barra de desplazamiento) */
::-webkit-scrollbar-thumb {
  background: #D16F4B;
  border-radius: 6px;
  border: 4px solid #f4f4f4; /* Espacio alrededor del thumb */
}

/* Hover sobre el scrollbar */
::-webkit-scrollbar-thumb:hover {
  background: #b0563c; /* Color más oscuro al pasar el mouse */
}

/* Scrollbar en Firefox */
* {
  scrollbar-width: thin; /* Scrollbar más delgado */
  scrollbar-color: #2C5A38 #f4f4f4; /* Color del thumb y track */
}
footer {
  background: linear-gradient(to top, #295835, #89A390);
  padding: 100px 0 60px;
  color: #f8e9d2;
}

.footer p {
  color: #f8e9d2;
  font-size: 16px;
}

.footer h5 {
  color: #f8e9d2;
  font-weight: 600;
  font-size: 20px;
}

.footer a {
  color: #f8e9d2;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #F8E7D1;
  text-decoration: none;
}

.footer .card {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(248, 231, 209, 0.2);
  background-color: rgba(248, 231, 209, 0.1);
}

.footer .card-body {
  background-color: transparent;
}

.footer .card-title, 
.footer .card-text {
  color: #f8e9d2;
}

.footer hr {
  margin: 30px 0;
  background-color: rgba(248, 231, 209, 0.2);
  opacity: 0.5;
}

.footer #footer-year {
  margin-bottom: 20px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f4ee;
    margin: 0;
    padding: 0;
}
.navbar-custom {
    background-color: #f8e9d2; /* Color beige de fondo */
    box-shadow: -1px 4px 5px 0px rgb(0 0 0 / 9%);
  }
.navbar-brand {
    color: #2f4f2f; /* Verde oscuro para el logo */
    font-weight: 400;
    font-size: 1.5rem;
    width: 200px;
}
.nav-link {
    color: #2f4f2f; /* Verde oscuro para enlaces */
    font-weight: 400;
}
ul.navbar-nav {
  gap: 15px;
}
.nav-link:hover {
    color: #1d361d; /* Verde más oscuro en hover */
}
.wistia-facade {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 18px;
  overflow: hidden;
  background-color: #0f1b12;
  cursor: pointer;
}
.wistia-facade-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 0.3s ease;
  filter: blur(0.5px);
}
.wistia-facade:hover .wistia-facade-thumb,
.wistia-facade:focus-within .wistia-facade-thumb {
  transform: scale(1.08);
}
.wistia-facade-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: none;
  background: rgba(0, 0, 0, 0.35);
  color: #F8E7D1;
  font-size: 3.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.wistia-facade-play:focus-visible {
  outline: 2px solid #F8E7D1;
  outline-offset: 4px;
}
.wistia-facade:hover .wistia-facade-play,
.wistia-facade:focus-within .wistia-facade-play {
  background: rgba(0, 0, 0, 0.45);
}
.wistia-iframe-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
}
.wistia-iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
}
.language-custom{
    width: 85px; 
    height: 32px;
    background-color: #2f4f2f; 
    border-radius: 16px; 
    padding: 2px;
}
.language-switch {
    position: relative;
    width: 80px;
    height: 32px;
    background-color: #2f4f2f;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
    color: #fff;
    font-weight: bold;
    font-size: 0.9rem;
    cursor: pointer;
}
.language-switch span {
    width: 50%;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.language-switch span:first-child {
    opacity: 1;
}
.language-switch .toggle-circle {
    position: absolute;
    width: 28px;
    height: 28px;
    background-color: #f8e9d2;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: transform 0.3s ease;
}
.text-language{
    font-size: 0.8rem; 
    font-weight:400;
    color: #ffffff7c;
}
.language-switch input {
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
}
.language-switch input:checked ~ .toggle-circle {
    transform: translateX(48px);
}
.language-switch input:checked ~ span:first-child {
    opacity: 0;
}
.language-switch input:checked ~ span:last-child {
    opacity: 1;
}
.hero {
    background-color: #355E3B;
    color: #f8e9d2;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 5px; /* Minimal space between sections */
}
.hero::before {
    display: none;
}

/* Service Dropdown in Hero */
.service-dropdown-container {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

.service-dropdown-label {
    color: #f8e9d2;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

.service-dropdown {
    background-color: rgba(248, 233, 210, 0.95);
    border: 2px solid #d97351;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 16px;
    color: #355E3B;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-dropdown:hover {
    background-color: #f8e9d2;
    border-color: #c55d3c;
}

.service-dropdown:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(217, 115, 81, 0.3);
}

.service-dropdown option {
    background-color: #f8e9d2;
    color: #355E3B;
}
.hero-content {
    text-align: center;
    z-index: 2;
    margin-bottom: 20px;
}
.hero .header-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}
.hero .logo-hero{
    height: 80px;
}
.hero h1 {
    font-size: 3rem;
    font-weight: 600;
}
.hero p {
    font-size: 1.5rem;
    font-weight: 300;
    color: #fff;
    margin-top: 10px;
}
.images-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
    overflow: hidden;
    position: relative;
}
.scroll-container {
    display: flex;
    animation: scroll-left 20s linear infinite;
}
.box {
    flex: 0 0 260px; /* Tamaño uniforme para todas las imágenes */
    border-radius: 10px;
    overflow: hidden;
    margin-right: 5px;
    align-content: end;
}
.box img {
    width: 100%;
    height:auto;
}
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.solutions-section {
    background-color: #355E3B;
    color: #f8e9d2;
    text-align: center;
    padding: 20px 84px 50px;
}
.section-text {
    color: #f8e9d2;
    text-align: center;
    padding: 70px 84px 80px;
}
.text-title{
  font-size: 32px;
  font-weight:600;
  color:#355E3B;
}
.text-subtitle{
  font-size: 28px;
  font-weight: 600;
  color:#355E3B;
}
.solutions-section.logo {
    background-color: #355E3B;
    color: #f8e9d2;
    text-align: center;
    padding: 80px 0px 70px;
}
.logo {
    position: relative; /* Necesario para que el ::after se posicione relativo a este contenedor */
    overflow: hidden;   /* Oculta cualquier desbordamiento del ::after */
}
.solutions-section .container {
    max-width: 1140px;
    margin: 0 auto;
}
.solutions-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.solutions-section p {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 10px;
}
.logo::after{
    content: "";
    position: absolute;
    width: 100%;
    height:100%;
    background:linear-gradient(to top, #fbf2e6, transparent);
    z-index: 1;
    inset: 0 0 auto 0; /* Automáticamente se posicionará dentro del contenedor */
}
    /* Animaciones logos de patrocinio*/
.swiper-container {
    width:100%;
    height: auto;
  overflow: hidden; /* Asegura que no se salga contenido visible del carrusel */
  margin: 0px 0px;
  margin-bottom: 42px;
}
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Logo carousel images - make them white */
.swiper1 .swiper-slide img,
.swiper2 .swiper-slide img {
    filter: brightness(0) invert(1); /* Estilo blanco como en la imagen */
    transition: transform 0.3s ease;
}
.swiper1 .swiper-slide img:hover,
.swiper2 .swiper-slide img:hover {
     transform: scale(1.1); /* Efecto hover */
}
/* Projects swiper images - keep them normal */
.projects-swiper .swiper-slide img {
    filter: none;
    transition: transform 0.3s ease;
}
.projects-swiper .swiper-slide img:hover {
     transform: scale(1.05); /* Subtle hover effect */
}
/* boton seccion texto */
.custom-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding:10px 20px;
    width: 50%;
    background-color: #d97351;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius:12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 40px;
  }

  .custom-button:hover {
    background-color: #b95f3f;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  }

  .custom-button span {
    margin-right: 8px;
  }

  .custom-button svg {
    width:18px;
    height:18px;
    fill: #fff;
    transition: transform 0.3s ease;
  }

  .custom-button:hover svg {
    transform: translateX(5px);
  }
  .custom-button.faq{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #d97351;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius:12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 40px;
    margin-top: 25px;
    width: 100%;
    padding: 10px 30px;
  }
  .faq-card {
    border: 2px solid #355E3B;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 10px;
    height: auto;
  }
  .text-center{
    color: #355E3B;
    font-weight:600;
  }
  .faq-header {
    color: #355E3B;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    text-align: left;
    font-size: 18px;
    gap: 15px;
    align-items: flex-start; /* Alinea el ícono arriba */
  }
  
  /* Ensure the svg comes first */
  .faq-header svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    order: 1;
  }
  
  /* Ensure the text takes the rest of the space */
  .faq-header span {
    flex-grow: 1;
    order: 2;
    font-weight: normal;
  }
  .faq-body {
    padding: 15px 20px;
    font-size: 16px;
    color: #555;
    text-align: left;
  }
/*estilos seccion de servicio */

.services-section {
    background-color: #355E3B !important;
    color: #f8e9d2;
    padding:80px 84px 50px;
}
.services-section .row.align-items-center .col-md-6 p.text-intern-service {
  font-weight: 300;
  font-size: 32px;
  color: #feeedc;
}
.services-section h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
}

  .services-section p {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 20px;
    
}

.service-buttons .btn {
    padding: 7px 50px;
    font-weight: 600;
    border-radius: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-width: fit-content;
}

.btn-primary-custom {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    transition: all 0.3s ease;
}

.btn-primary-custom.active-tab {
    background-color: #D16F4B;
    border-color: #D16F4B;
    color: white;
}

.btn-secondary-custom {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.btn-secondary-custom.active-tab {
    background-color: #D16F4B;
    border-color: #D16F4B;
    color: white;
}

.btn-secondary-custom:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding:7px 20px;
    background-color: #d97351;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 20px;
    width: 100%;
    gap: 20px;
}
p.text-intern-service{
    text-align: left;
    font-size: 32px;
    font-weight: 200;
}
p.text-intern-service-2 {
    margin-bottom: 20px;
    text-align: left;
    font-weight: 700;
}
.service-buttons .btn.btn-primary-custom:hover {
    border: 2px solid;
}
.contact-button svg {
    margin-left: 10px;
    width: 30px;
    height: 30px;
    fill: white;
}

.list-item {
    margin-bottom: 20px;
}
/* Personalización de la sección de contenido */
.content-section{
    padding: 70px 84px 70px;
    position: relative; /* El contenedor padre del carrusel debe tener posición relativa */
    text-align: center;
}
.content-section .swiper-slide {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  
  .content-section h3 {
    color: #2b5a46;
    margin-bottom: 10px;
  }
  
  
  /* Hide swiper navigation buttons for projects section */
  .projects-swiper .swiper-button-next,
  .projects-swiper .swiper-button-prev {
    display: none;
  }

  .swiper-button-next, .swiper-button-prev {
    color: #B8E5C4 !important;
    background-color: #355e3b;
    width: 42px !important;
    height: 42px !important;
    border-radius: 40px;
  }

  .swiper-button-next:after, .swiper-button-prev:after {
    font-size: 22px !important;
  }
  .swiper-slide.img-digital {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .swiper-slide.img-digital img {
    max-width: 100%;
    height: 400px;
    transition: none;
    object-fit: cover;
    filter: none;
    border-radius: 20px;
    width: 100%;
    object-position: top;
  }
.swiper-slide.img-digital img:hover {
    transform: none;
}
.content-digital {
    border: 2px solid #355E3B;
    border-radius: 30px;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
}
.content-digital h3 {
    font-size: 18px;
    font-weight: 600;
    padding: 20px;
    border-bottom: 1px solid #355E3B;
}
.content-digital p {
    padding:20px 50px;
    text-align: center;
}
/* sección de metrica */
.content-section-metric{
    padding: 20px 84px;
    position: relative;
    text-align: center;
    padding-bottom: 50px;
}

.metric-card {
    display: flex;
    border: 2px solid #355E3B;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    text-align: left;
    gap: 12px;
    justify-content: flex-start;
    flex-direction: row;
    height: 100%; /* Ocupa toda la altura del grid */
  }
  .metric-card-info{
    display: grid;
    gap: 8px;
    align-content: flex-start;

  } 
.metric-card .icon {
    color: #355E3B;
    margin-right: 15px;
    height: auto;
    display: block;
    align-content: center;
  }
  .metric-card-info h4 {
    color: #355E3B;
    font-weight: 700;
    margin-bottom: 0px;
    font-size: 32px;
}
  .metric-card h5 {
    font-weight: bold;
    margin: 0;
    color: #355E3B;
  }

  .metric-card p {
    margin: 0;
    font-size: 1rem;
    color: #355E3B;
  }
  .contact-button-metric{
    display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 5px 20px;
        background-color: #d97351;
        color: #fff;
        font-size: 1.2rem;
        font-weight: 600;
        border-radius: 50px;
        text-decoration: none;
        margin-top: 20px;
        gap: 20px;
        width: 50%;
  }
  .contact-button-metric svg {
    margin-left: 10px;
    width: 28px;
    height: 28px;
    fill: white;
  }
  .contact-button svg {
    margin-left: 10px;
    width: 28px;
    height: 28px;
    fill: white;
  }

  .section-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #355E3B;
    margin-bottom: 40px;
  }
  /* seccion gif*/
  .custom-section {
    padding: 80px 84px;
  }

  .left-content {
    flex: 2;
    padding: 20px;
    gap: 15px;
    display: grid;
  }

  .right-content {
    flex: 1; /* Hacer que la columna derecha sea más pequeña */
    text-align: center;
  }

  .right-content img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
  .section-title-left-content {
    text-align: left;
    font-size: 1.8rem;
    font-weight: 700;
    color: #355E3B;
    margin-bottom: 20px;
}
/* seccion formulario */
.form-section {
    background-color: #2c5a38;
    padding: 125px 20px 145px; /* Adjusted padding */
    text-align: center;
    position: relative;
    z-index: 1;
    background-image: url(../img/icono-background.png);
    background-size: cover;
    background-repeat: no-repeat;
  }
  .form-section-contacto {
    padding: 80px 84px;
  }

  .form-section h2 {
    color: white;
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
  }

  .form-container {
    background-color: #F5E7D1;
    border-radius: 30px;
    padding: 40px 50px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-110px);
  }

  .form-container h5 {
    margin-bottom:20px;
    font-weight: 500;
    font-size: 16px;
  }

  .form-check-label {
    font-size: 0.9rem;
    margin-left: 10px;
  }

  .form-textarea {
    border-radius: 10px;
    resize: none;
  }

  .submit-btn {
    background-color: #d97351;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .submit-btn:hover {
    background-color: #b85e43;
  }

  .submit-btn svg {
    width: 20px;
    height: 20px;
    fill: white;
  }
  /* seccion testimonios */
  .testimonial-video {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(0, 128, 0, 0.5), rgba(0, 128, 0, 0.7));
    color: white;
    height: 570px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .testimonial-text {
    padding: 17px 35px;
    background: #F8E7D1;
    border-radius: 20px;
    border: 1px solid #355E3B;
    display: flex;
    flex-direction: column; /* Apila los elementos verticalmente */
    justify-content: center; /* Baja el contenido hacia la parte inferior */
    align-items: flex-start; /* Alinea el contenido hacia la izquierda */
    height: 300px; /* Ajusta esta altura según tus necesidades */
}
  .testimonial-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
  }
  .testimonial-text .d-flex.align-items-center.mb-3 div h6 {
    color: #355E3B;
    font-weight: 700;
    font-size: 18px;
}
.testimonial-text p {
  color: #355E3B;
}
.testimonial-text .d-flex.align-items-center.mb-3 div small {
  color: #53575B;
}
.testimonial-text .d-flex.align-items-center.mb-3 {
  gap: 10px;
}
.testimonial-text .d-flex.align-items-center.mb-3 img {
    width: 20%;
}
.testimonial-text .d-flex.align-items-center.mb-3 div {
    width: 85%;
}
.testimonios{
  padding: 0px 84px 40px;

}
.testiominos-contendor-pagina{
  position: relative;
}
.testiominos-contendor{
  position: relative;
}
.testiominos-contendor::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 59%;
  background: transparent;
  z-index: 2;
  inset: 0 0 auto 0;
  transform: translateY(74%);
  }
.testimonial-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background:linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(53 94 59) 44%);
    color: white;
    z-index: 2;
    font-size: 14px;
}

  .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    color: white;
    background: transparent;
    border-radius: 50%;
    border: 6px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 2;
  }

  .play-btn:hover {
    background: #fff;
    cursor: pointer;
    color: black;
  }
  /* footer */
  .footer{
    background: linear-gradient(to top, #295835, #89A390);
    padding: 60px 0 10px;
    color: #f8e9d2;
  }
  .footer p {
    color: #f8e9d2;
    font-size: 16px;
  }

  .footer h5 {
    color: #f8e9d2;
    font-weight: 600;
    font-size: 20px;
  }

  .footer a {
    color: #f8e9d2;
    transition: color 0.3s ease;
  }

  .footer a:hover {
    color: #F8E7D1;
    text-decoration: none;
  }

  .footer .card {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(248, 231, 209, 0.2);
    background-color: rgba(248, 231, 209, 0.1);
  }

  .footer .card-body {
    background-color: transparent;
  }

  .footer .card-title, 
  .footer .card-text {
    color: #f8e9d2;
  }

  .footer hr {
    margin: 30px 0;
    background-color: rgba(248, 231, 209, 0.2);
    opacity: 0.5;
  }

  .footer #footer-year {
    margin-bottom: 20px;
  }

  .footer-text{
    margin-bottom:10px;
    font-size: 18px;
  }
  .footer-text-center{
    color: #fbf2e6;
    font-weight:600;
  }
   /*pagina nosotros */
   .green-section {
    background: linear-gradient(to top, #295835, #89A390), 
                url('/assets/img/icono-background.png') no-repeat left bottom;
    background-size: 121%; /* Ajusta según necesites */
    color: #f8e9d2;
    height: 500px;
    padding-top: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

  .green-section .container {
    max-width: 960px; /* Centrar contenido */
    margin: 0 auto;
  }

  .green-section h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
  }

  .green-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
  }

  .custom-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: #d97351;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    border: none;
  }

  .custom-button svg {
    margin-right: 10px;
    width: 18px;
    height:18px;
    fill: white;
  }
  .custom-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: #d97351;
    color: white;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    width: 50%;
  }
  .video-section {
    padding: 50px 84px;
    position: relative;
    text-align: center;
  }

  video {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    position: relative;
    z-index: 1;
  }

  .video-wrapper {
    position: relative;
    display: inline-block;
  }

  .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 2;
    transition: background-color 0.3s ease;
  }

  .play-button:hover {
    background-color: rgba(255, 255, 255, 1);
  }

  .play-button svg {
    width: 30px;
    height: 30px;
    fill: #2C5A38;
  }
  .btn-section {
    padding: 60px 84px 20px;
    position: relative;
    text-align: center;
  }

  .custom-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding:13px 35px;
    border: none;
    border-radius: 12px;
    background-color: #F8E7D1;
    color: #2c5a38;
    font-weight: 600;
    font-size:1.3rem;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    text-decoration: none;
  }

  .custom-btn svg {
    width: 26px;
    height: 26px;
    fill: #d97351;
  }

  .custom-btn:hover {
    background-color: #e7dbc8;
  }
  .custom-section-nosotros {
    padding: 60px 0;
}
  .custom-btn.active {
    background-color: #2c5a38;
    color: #ffffff;
  }

  .custom-btn.active svg {
    fill: #ffffff;
  }
  .buttons-section .btn {
    background-color: #f5efe5;
    border: 1px solid #2C5A38;
    color: #2C5A38;
    margin-right: 10px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
  }
 .subtitles {
    font-size: 16px;
    font-weight: bold;
    color: #355E3B;
}
  .buttons-section .btn i {
    margin-right: 10px;
  }
  .text-imagen{
    padding: 70px 84px;
  }
  .progress-section {
    text-align: center;
    padding: 20px 80px;
  }

  .progress-container {
    position: relative;
    width: 90%;
    margin: 0 auto;
  }
  .progress-bar {
    position: absolute;
    top: 80%;
    left: 0;
    right: 0;
    height: 32px;
    background: linear-gradient(to left, #295835, #89A390);
    border-radius: 60px;
    transform: translateY(-45%);
    z-index: 1;
}
  .step {
    position: relative;
    display: inline-block;
    width: 16.6%;
    text-align: center;
    z-index: 2;
  }

  .step-circle {
    width: 20px;
    height: 20px;
    border: 3px solid #F8E7D1;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    z-index: 3;
  }

  .step.active .step-circle {
    background-color: #2c5a38;
  }

  .step-label {
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #717171;
  }

  .step.active .step-label {
    color: #2c5a38;
    font-weight: bold;
  }
  .services-section {
    padding: 40px 0;
    background-color: #F8E7D1; /* Fondo opcional */
  }
  
  .circle-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 10px;
    border-radius: 50%;
    overflow: hidden;
  }
  
  .circle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .services-section p {
    font-size: 16px;
    font-weight: bold;
    color: #feeedc;
    margin-top: 10px;
  }
  .team-section {
    padding: 50px 0;
    background-color: #f9f4ee;
  }
  
  .team-section h4 {
    font-size: 16px;
    font-weight: bold;
    color: #2f4f2f;
  }
  
  .team-section h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #2f4f2f;
  }
  
  .team-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
  }
  
  .team-carousel .swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
  }
  
  .team-card {
    width: 100%;
    height: 100%;
  }
  
  .team-card .card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: transparent;
    border: none;
  }
  
  .team-card .card-img {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 8px;
    background-color: #355e3b;
    position: relative;
  }
  
  .team-card .card-img img {
    transition: transform 0.3s ease;
    display: block;
    position: relative;
  }
  
  .team-card .card-body {
    background-color: #f8e7d1;
    padding: 20px;
    border-radius: 8px;
    margin-top: -20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    z-index: 1;
  }
  
  @media (max-width: 767px) {
    .team-card .card-img {
      height: 300px;
    }
    
    .team-card .card-body {
      margin-top: -10px;
      padding: 15px;
    }
    
    .team-carousel .swiper-slide {
      padding: 10px;
    }
  }

  .card-icon {
    text-align: left;
    margin: -20px;
  }
  
  .scroll-indicator {
    margin-top: 10px;
    height: 8px;
    background-color: #355E3B;
    position: relative;
    border-radius: 20px;
  }
  
  .scroll-bar {
    width: 50%;
    height: 100%;
    background-color: #D16F4B;
    position: absolute;
    transition: all 0.3s ease;
    border-radius: 20px;
  }
   /* pagina testimonios */
      .green-section-testimonios{
        background: linear-gradient(to top, #295835, #89A390), 
                    url('../img/icono-background.png') no-repeat left bottom;
        background-size: 121%; /* Ajusta según necesites */
        color: #f8e9d2;
        height: 400px;
        padding-top: 40px;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .text-pagina-testimonio{
      color:#295835;
      font-weight: 600;
      padding-bottom: 20px;
    }
       /* proyectos */
    .green-section-proyect{
        background-image: url('/assets/img/legacy/banner-proyectos-duplica.png');
        background-size: cover;
        color: #f8e9d2;
        height: 400px;
        padding-top: 40px;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        background-repeat: no-repeat;
    }
    .custom-section-proyect{
        padding: 50px 80px;
        background: linear-gradient(to top, #295835, #89A390);
        color: white;
    }
    .custom-section-proyect-object{
      padding: 50px 80px;
  }
  .custom-section-proyect-object-resultados{
    padding: 50px 80px;
    background-color: #D7DFD8;
    margin: 50px 0px;
}
  .img-fluid {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Projects carousel images - simplified */
    .section-title-proyect {
      text-align: left;
      font-size: 1.8rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 20px;
  }
  .section-faq-proyect {
    color: #f8e9d2;
    text-align: center;
    padding: 50px 80px;
  }
  .texto-proyecto{
    font-weight: 700;
    font-size: 26px;
    color: #2f4f2f;
  }
  section#funciones {
    padding: 0px 80px;
}
  .carousel-container p,
  .carousel-container h3 {
    user-select: none; /* Aplica también a los textos específicos */
  }
  .carousel-container {
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-color: #D16F4B #f8e7d1;
    scrollbar-width: thin;
    cursor: grab;
    user-select: none;
  }

  .carousel-container::-webkit-scrollbar {
    height: 8px;
  }

  .carousel-container::-webkit-scrollbar-thumb {
    background-color: #D16F4B;
    border-radius: 4px;
  }

  .carousel-container::-webkit-scrollbar-track {
    background: #f8e7d1;
  }

  .carousel-item {
    flex: 0 0 auto;
    width:500px;
    margin-right: 15px;
    padding: 50px;
    background: linear-gradient(to top, #295835, #5E8167);
    border-radius: 10px;
    color: white;
    text-align: left;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
  }

  .carousel-item h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: bold;
    max-width: 100%;
    overflow-wrap: break-word;
    white-space: normal;
  }

  .carousel-item p {
    margin-bottom: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    white-space: normal;
    font-size: 14px;
  }

  .carousel-content {
    display: flex;
  }
  /* pagina de preguntas frecuentes */
  
  .accordion-item {
    border: none; /* Sin borde en las preguntas */
    margin: 15px 0px ;
  }
  
  .accordion-header {
    border-bottom: 1px solid #89A390; /* Línea separadora */
  }
  
  .accordion-button {
    background: none;
    color: #3c403c; /* Color de texto */
    font-weight: bold;
    font-size: 16px;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none; /* Sin bordes en el botón */
  }
  
  .accordion-button:focus {
    box-shadow: none; /* Sin sombra al enfocar */
  }
  
  .accordion-button:not(.collapsed) {
    background-color: #f9f4ee; /* Fondo al expandir */
    color: #4e7146; /* Color del texto cuando está abierto */
    font-weight: bold;
  }
  
  .accordion-body {
    font-size: 14px;
    color: #000000;
    padding: 1rem 1.5rem; /* Espaciado interno */
    margin-top: -1px; /* Ajuste para evitar saltos */
    background-color:#f9f4ee;
  }
  
  button.accordion-button.collapsed {
    background: #f9f4ee;
    color: #355E3B;
}
  .accordion-header .accordion-button {
    justify-content: space-between;
  }
  .mobile-card{
    display:none;
  }
  /* General Styles for Carousel Items */
.carousel-item {
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.circle-image img {
  max-width: 100%;
  border-radius: 50%;
  border: 3px solid #355E3B;
}

.carousel-item p {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 300;
}

/* Specific Styles for Each Slide */
.slide-gestion {
  background-color: #f5f5dc;
}

.slide-construccion {
  background-color: #fdf6e3;
}

.slide-hospitalidad {
  background-color: #eaf2ef;
}

.slide-manufacturacion {
  background-color: #fbe4d5;
}

.slide-ventas {
  background-color: #d9f5e1;
}

.slide-patrimonios {
  background-color: #e9eaf4;
}

/* Adjust Button Colors */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(100%);
}
.metric-card .icon svg.rota {
  transform: rotate(181deg);
}
img.img-fluid.rounded.logo-marca {
  background: #386442;
  object-fit: contain;
  padding: 80px;
  height: 270px;
}
/* Escritorio pequeño / tablet */
@media only screen and (min-width: 768px) and (max-width: 1000px){
  .swiper-slide img {
    max-width: 90px; /* Ajusta el tamaño del logo */
}
.custom-section-nosotros {
  padding: 10px 34px;
}
img.img-fluid.rounded.logo-marca {
  padding: 50px !important;
  height: 100%;
}
.custom-section-proyect-object-resultados {
  padding: 20px 34px;
}
.custom-section-proyect-object {
  padding: 20px 34px;
}
.custom-section-proyect {
  padding: 20px 34px;
}
.testimonial-overlay {
  font-size: 14px;
}
.section-faq-proyect {

  padding: 20px 34px;
}
.section-faq-proyect {
  padding: 20px 34px;
}
.solutions-section {
  padding: 20px 34px;
}
.content-section-metric {
  padding: 20px 34px;
}
.section-text {
  padding: 70px 30px;
}
.content-section {
  padding: 30px 30px 70px;
}
.content-digital p {
  text-align: left;
}
.faq-header svg {
  flex-shrink: 0;          /* No permitir que se reduzca */
  width: 16px;
  height: 16px;
  margin-top: 3px;         /* Ajusta esto según el diseño */
}
.content-section .swiper-slide {
  padding: 5px;
}
.custom-button.faq {
  font-size: 13px;
  gap: 14px;
  padding: 10px 12px;
}
.custom-button svg {
  width: 16px;
  height:16px;
}
.metric-card {
  padding: 20px;
  gap: 12px;

}
.section-title-left-content {
  font-size: 1.4rem;
}
.metric-card .icon svg {
  width: 24px;
}
.metric-card .icon {
  color: #355E3B;
  margin-right: 15px;
  height: auto;
  display: block;
  align-content:start;
}
.custom-button {
  width: 100%;
}
.metric-card {
  display: block;
}
.custom-section-nosotros .container .row .col-md-6 p {
  font-size: 14px;
}
.select-idioma {
  order: 1; /* Segundo el selector de idioma */
  margin: 0 auto;
}

.navbar-toggler {
  order: 2; /* Último el menú hamburguesa */
  margin-left: auto;
}

.navbar-collapse {
order: 3;
position: absolute;
top: 80px;
background: linear-gradient(to top, #295835, #81a78b);
width: 100%;
padding:20px 35px 75px;
margin: 0px;
left: 0px;
}
.custom-section {
  padding: 80px 34px;
}
.testimonial-text .d-flex.align-items-center.mb-3 div small {
  font-size: 12px;
}
.testimonios-contenedor {
  position: relative;
  overflow: hidden; /* Importante si no querés que se salga visualmente */
}
testiominos-contendor {
  position: relative;
  overflow: hidden; /* Importante si no querés que se salga visualmente */
}
.testiominos-contendor::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -21px;
  width: 106%;
  height: 57.3%;
  background: linear-gradient(to top, #fbf2e6, transparent);
  z-index: 2;
  pointer-events: none;
}
.testimonial-text .d-flex.align-items-center.mb-3 div h6 {
  font-size: 16px;
}
.row>* {
  padding: 6px;
}
.testimonial-text {
  padding: 17px 20px;
}
.testimonios {
  padding: 0px 34px;
}
.testimonial-text p {
  font-size: 12px;
}
.testimonial-overlay {
font-size: 12px;
}
.nav-link {
color: #FFFFFF;
font-weight: 600;
padding-bottom: 15px;
}
li.nav-item {
border-bottom: 1px solid #F8E7D1;
}
a.navbar-brand img {
width: 190px;
}
button.navbar-toggler {
border-radius: 90px;
height: 35px;
width: 35px;
border: 3px solid #2f4f2f;
padding: 0px;
margin-left: 10px;
}
img.navbar-toggler-icon {
width: 22px;
height: 22px;
}
}
  @media (max-width: 767px) {
    .navbar-brand {
      order: 0; /* Primero el logo */
      margin-right: auto;
      width: 140px;
  }
  section.video-section {
    padding: 0px !important;
}
section.video-section .container {
  padding: 0px;
}
section.progress-section {
  padding: 0px !important;
}
  .select-idioma {
      order: 1; /* Segundo el selector de idioma */
      margin: 0 auto;
  }

  .navbar-toggler {
      order: 2; /* Último el menú hamburguesa */
      margin-left: auto;
  }

  .navbar-collapse {
    order: 3; 
    position: absolute;
    top: 80px;
    background: linear-gradient(to top, #295835, #81a78b);
    width: 100%;
    padding:20px 35px 75px;
    margin: 0px;
    left: 0px;
  }
  .nav-link {
    color: #FFFFFF;
    font-weight: 600;
    padding-bottom: 15px;
}
li.nav-item {
  border-bottom: 1px solid #F8E7D1;
}
  a.navbar-brand img {
    width: 140px;
  }
  button.navbar-toggler {
    border-radius: 90px;
    height: 35px;
    width: 35px;
    border: 3px solid #2f4f2f;
    padding: 0px;
    margin-left: 10px;
}
img.navbar-toggler-icon {
  width: 22px;
  height: 22px;
}
section#funciones {
  padding: 5px 30px !important;
}
    section .hero{
      padding: 0px !important;
    }
    section{
      padding: 30px 30px  !important;
    }
    .swiper-container{
      height:120px;
      margin-bottom: 0px;
    }
    .logo::after {
        content: "";
        position: absolute;
        background: linear-gradient(0deg, rgb(251 242 230) 4%, rgba(108, 47, 113, 0) 83%);
    }
    .green-section-testimonios {
      height: 201px;
      margin-top: 70px;
  }
  /* Make hero h1 font smaller on mobile */
  .hero h1 {
    font-size: 2rem;
  }
  .text-pagina-testimonio{
    padding: 0px 1px 0px 30px;
    margin-bottom: 0px !important;
  }
  .custom-button {
    width: 100%;
}
.solutions-section.logo {
  padding: 0px 0px 70px;
}
.faq-header{
  padding:0px;
}
.faq-header svg {
  width: 42px;
  height: 42px;
}
.hero .logo-hero {
  height: 55px;
  margin-bottom: 7px;
}
.service-buttons .btn {
  font-size: 0.9rem;
}
.row {
  gap: 20px;
}
.contact-button-metric {
  width: 100%;
}
.form-container {
  padding: 40px 40px;
  margin: 100px 10px 0px 10px;
  border-radius: 0px;
}
.solutions-section {
  text-align: left;
}
section.btn-section {
  padding: 0px 0px !important;
}
section.btn-section .container {
  display: grid !important;
          padding:20px 0px;
}
section.btn-section .container a.custom-btn {
  padding: 13px 150px;
}
.text-title {
  font-size: 24px;
  font-weight: 600;
  color: #355E3B;
  text-align: left;
}
.text-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: #355E3B;
  text-align: left;
}
h2.text-center.mb-5 {
  text-align: left !important;
}
.img-mobile-resultados{
  display: block !important;
}
.img-pc-resultados{
  display: none;
}
.services-section .row.align-items-center .col-md-6 p.text-intern-service {
  font-size: 26px;;
}
.pc-card{
  display: none !important;
}
.mobile-card{
  display:block;
}
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}


.content-card:hover {
  transform: scale(1.03);
}
/*nosotros mobiel*/
.img-digital img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  object-position: top;
}

.content-digital {
  padding: 20px 0px;
  background: #f9f4ee;
  border: 0px;
  text-align: left;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.content-digital h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #355E3B;
  border: 3px solid;
  border-radius: 40px;
  padding: 10px 18px;
  width: auto;
  line-height: 20px;
}

.content-digital p {
  font-size: 14px;
  line-height: 1.5;
  color: #000000;
  padding: 10px 0px;
  margin: 0px;
  text-align: left;
}
.section-title {
  text-align:left;
  font-size:24px;
  font-weight: 700;
  color: #355E3B;
  margin-bottom: 40px;
}
.metric-card {
  padding: 12px 10px;
}
.metric-card p {
  font-size: 0.8rem;
}
.metric-card-info h4 {
  font-size: 26px;
}
.metric-card h5 {
  font-size: 18px;
}
.section-title-left-content {
  font-size: 24px;
}
.testiominos-contendor h2.text-center.mb-4 {
  text-align: left !important;
  margin: 0px !important;
  font-size: 24px;
}
.form-section h2 {
  font-size: 24px;
  text-align: left;
}
.testimonials-container {
  gap: 25px;
  display: grid;
}
.green-section {
  margin-top: 80px;
}
video {
    height: 400px;
    border-radius: 0px;
    object-fit: cover;
}
.carousel-item-nosotros {
  flex: 0 0 auto;
  width: auto;
  margin-right: 15px;
  width: 140px;
  background-color: #f9f4ee;
  border-radius: 10px;
  color: #2d4d2d;
  text-align: left;
  gap: 10px;
  box-shadow: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin-bottom: 0px;
}
.carousel-item-nosotros p {
  text-align: center;
  margin-bottom: 0;
  overflow-wrap: break-word;
  max-width: 100%;
  white-space: normal;
}
.carousel-container {
  padding-bottom: 30px;
  border-radius: 0px;
}
.col-md-6.call {
  order: 1;
}
.col-md-6.text-call {
  order: 2;
}
/*proyectos interna mobile*/
.faq-card svg {
  width: 22px;
  height: 22px;
}
.faq-card .faq-header .texto-proyecto {
  font-weight: 700;
  font-size: 22px;
  color: #2f4f2f;
}
.carousel-item{
  width: 300px;
  padding: 30px;
}
.carousel-item p {
  margin-top: 15px;
  font-size: 14px;
  font-weight: 300;
}
.carousel-item h3 {
  font-size: 18px;
}
.custom-section-proyect-object-resultados {
  margin: 50px 30px;
  border-radius: 20px;
}
.submit-btn {
  width: 100%;
  border-radius: 0px;
  padding: 10px 20px;
  justify-content: center;
}
.footer {
  background: linear-gradient(to top, #295835, #89A390);
  padding: 50px 50px;
}
}
.active-tab {
    background-color: #D16F4B;
    border-color: #D16F4B;
    color: white;
}

/* Mobile phases section styles */
.content-section-mobile {
  padding: 40px 0;
  background-color: #F8E7D1;
}

.content-section-mobile .section-title {
  font-size: 24px;
  font-weight: 600;
  color: #355E3B;
  margin-bottom: 10px;
  text-align: center;
}

.content-section-mobile .section-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: #355E3B;
  text-align: center;
}

.phases-mobile {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.phase-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.phase-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
}

.phase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.phase-content {
  padding: 20px;
  width: 100%;
  max-width: 100%;
}

.phase-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #355E3B;
  margin-bottom: 10px;
}

.phase-content p {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  margin: 0;
}

/* Show/hide based on screen size */
@media (min-width: 768px) {
  .content-section-mobile {
    display: none;
  }
}

@media (max-width: 767px) {
  .content-section.pc-card {
    display: none;
  }
  
  .phase-card {
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
  }
  
  .phase-image, 
  .phase-content,
  .phase-image img {
    width: 100%;
    max-width: 100%;
  }
  
  .content-section-mobile .container {
    padding: 0;
  }
  
  .content-section-mobile .section-title {
    padding: 0 15px;
  }
  
  .content-section-mobile .section-subtitle {
    padding: 0 15px;
  }
}

@media (max-width: 767px) {
  .section-text .row {
    gap: 0;
  }
}

.custom-section-nosotros {
    padding: 60px 0;
}

.custom-section-nosotros .img-fluid {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 400px;
    border-radius: 8px;
}

.custom-section-nosotros .col-md-6 {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .custom-section-nosotros .img-fluid {
        max-height: 300px;
        margin-bottom: 20px;
    }
    
    .custom-section-nosotros {
        padding: 30px 0;
    }
}

/* ========== INLINE STYLES EXTRACTED FROM INDEX.HTML ========== */

/* Override styles for testimonial overlays */
body .testimonial-video .testimonial-overlay,
html body .testimonial-overlay {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  padding: 20px !important;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.9) 100%) !important;
  color: white !important;
  z-index: 100 !important;
  pointer-events: none !important;
  text-shadow: 1px 1px 2px black !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

body .testimonial-video .testimonial-overlay h5,
html body .testimonial-overlay h5 {
  font-size: 1.2rem !important;
  font-weight: bold !important;
  margin-bottom: 5px !important;
  color: white !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

body .testimonial-video .testimonial-overlay p,
html body .testimonial-overlay p {
  font-size: 0.9rem !important;
  margin-bottom: 5px !important;
  color: white !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

body .testimonial-video video,
html body .clickable-video video {
  position: relative !important;
  z-index: 99 !important;
}

body .testimonial-video .play-btn,
html body .play-btn {
  z-index: 101 !important;
}

/* Clickable Video */
.clickable-video {
  position: relative;
  overflow: hidden;
}

/* Mobile content carousel styles */
.mobile-content-carousel {
  position: relative;
  padding-bottom: 40px; /* Space for pagination */
}

.mobile-content-carousel .swiper-slide {
  height: auto;
}

.mobile-content-carousel .content-card {
  height: 100%;
  margin-bottom: 0;
}

.mobile-content-carousel .swiper-pagination {
  bottom: 0;
}

.mobile-content-carousel .swiper-pagination-bullet-active {
  background-color: #D16F4B;
}

.mobile-content-carousel .swiper-button-next,
.mobile-content-carousel .swiper-button-prev {
  color: #355E3B;
}

/* Navigation bar styles */
.navbar-custom {
  height: 88px;
}

/* Service buttons responsive styles */
@media (min-width: 768px) {
  .service-buttons {
    flex-direction: row !important;
    justify-content: center;
  }
  
  .service-buttons button {
    width: auto !important;
    min-width: 200px;
  }
  
  .mobile-card {
    display: none;
  }
}

@media (max-width: 767px) {
  .pc-card {
    display: none;
  }
  
  /* Horizontal scrolling for content-grid */
  .content-grid {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding-bottom: 15px;
    -webkit-overflow-scrolling: touch;
  }
  
  .content-card {
    flex: 0 0 90%;
    scroll-snap-align: start;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
  }
}

/* Service section styles */
.service-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 100%;
}

.service-buttons button {
  white-space: normal;
  width: 100%;
  padding: 12px 20px;
  font-size: 16px;
}

.service-image-container {
  position: relative;
  width: 100%;
  padding-top: 75%;
  overflow: hidden;
}

.service-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.service-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-image:not(.active) {
  opacity: 0;
}

/* Solutions section */
.solutions-section p {
  font-size: 22px;
  font-weight: bold;
}

.solutions-section p.text-subtitle {
  font-size: 22px;
  font-weight: 500;
}

.content-section-mobile .section-title {
  font-size: 32px;
  font-weight: 600;
  color: #355E3B;
}

.content-section-mobile .section-subtitle {
  font-size: 22px;
  font-weight: 600;
  color: #355E3B;
}

/* Text styles */
.section-title-left-content {
  font-size: 34px;
  font-weight: 500;
}

/* Custom buttons */
.custom-button {
  /* max-width: 250px; */
  max-width: fit-content;
  margin: 0 auto;
  display: inline-block;
}

/* List items */
.list-item svg {
  margin-right: 10px;
}

/* ========== FORM STYLES ========== */

/* Form container and inputs */
.form-container .mb-4 {
  margin-bottom: 40px !important;
}

.form-container input[type="text"],
.form-container input[type="email"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Testimonials section */
.col-md-4.testimonial-grid {
  gap: 10px;
  display: grid;
}

/* Column styles */
.col-md-6.left-content {
  display: inline;
  align-content: center;
}

.col-md-6.right-content {
  display: flex;
  justify-content: center;
}

.col-md-6.right-content img {
  width: 400px;
}

/* Text alignment */
.center-text {
  text-align: center;
}

/* Paragraphs */
.custom-paragraph {
  margin-bottom: 40px;
}

/* ========== ADDITIONAL STYLES FROM INDEX.HTML ========== */

/* Navbar and Logo */
.navbar-brand img {
  height: 40px;
  margin-right: 10px;
}

.navbar img.logo-duplica-claro {
  height: 40px;
  margin-right: 10px;
}

/* Text styling */
.text-bold {
  font-weight: bold;
}

/* Solutions section */
.solutions-section {
  overflow: hidden;
}

.solutions-section.logo {
  overflow: hidden;
}

.text-large {
  font-size: 22px;
  font-weight: bold;
}

.text-xlarge {
  font-size: 34px;
  font-weight: 500;
}

.text-medium {
  font-size: 22px;
  font-weight: 500;
}

/* SVGs and icons */
.svg-margin-top {
  margin-top: 3px;
}

/* FAQ cards */
.faq-card.no-margin {
  margin-top: 0;
}

/* Service buttons and content */
.service-content {
  display: none;
}

.service-content.active {
  display: block;
}

.list-style-none {
  list-style: none;
}

.text-intern-service-large {
  font-size: 120%;
}

.text-intern-service-normal {
  font-weight: normal;
}

.text-digital-large {
  font-size: 32px;
  font-weight: 600;
  color: #355E3B;
}

.text-digital-medium {
  font-size: 22px;
  font-weight: 600;
  color: #355E3B;
}

/* Facebook Pixel code */
.fb-pixel-img {
  display: none;
}

/* Service Section Styles */
#content-proyecto {
  display: none;
}

#content-cto {
  display: block;
}

.service-image-container {
  position: relative;
  width: 100%;
  padding-top: 75%;
  overflow: hidden;
}

.service-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.service-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-image:not(.active) {
  opacity: 0;
}

.text-intern-service-120 {
  font-size: 120%;
}

.text-intern-service-normal {
  font-weight: normal;
}

/* Text in digital section */
.text-digital-32 {
  font-size: 32px;
  font-weight: 600;
  color: #355E3B;
}

.text-digital-22 {
  font-size: 22px;
  font-weight: 600;
  color: #355E3B;
}

/* Main solutions section specific styling */
#solutions-main-section {
  visibility: visible;
  background-color: #355E3B;
  color: #f8e9d2;
  padding: 40px 0 60px 0; /* Reduced top padding from 80px to 40px */
}

#solutions-main-section p.text-large,
#solutions-main-section p.text-xlarge,
#solutions-main-section p.text-medium {
  color: #f8e9d2;
}

/* Mobile styles for custom-section */
@media (max-width: 767px) {
    .custom-section {
        padding: 40px 20px;
    }
    
    .mobile-reverse {
        display: flex;
        flex-direction: column-reverse;
    }
    
    .left-content {
        padding: 20px 0;
        text-align: center;
    }
    
    .right-content {
        margin-top: 0;
        margin-bottom: 20px;
    }
    
    .section-title-left-content {
        text-align: center;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .custom-paragraph {
        text-align: center;
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .center-text {
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
    }
    
    /* Make sure the image looks good */
    .right-content img {
        max-width: 90%;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
}

/* Workshop Hero Styles */
.workshop-hero {
    background: linear-gradient(135deg, var(--forest-600) 0%, var(--forest-800) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.workshop-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('img/ai-pattern.png') repeat;
    opacity: 0.1;
    z-index: 1;
}

.workshop-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--forest-100);
    border-radius: 50%;
}

/* Audience Cards */
.audience-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
}

.check-list, .x-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--forest-600);
    font-weight: bold;
}

.x-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
}

.x-list li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: var(--red-500);
    font-weight: bold;
}

/* Benefit Cards */
.benefit-card {
    background: var(--forest-50);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    height: 100%;
}

.benefit-card h3 {
    color: var(--forest-600);
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Pricing Card */
.pricing-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pricing-card .price {
    font-size: 3rem;
    color: var(--forest-600);
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #355E3B;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--forest-100);
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Terminal Effect */
.bg-forest-600 {
    background-color: var(--forest-600);
}

.text-forest-300 {
    color: var(--forest-300);
}

.rounded-full {
    border-radius: 9999px;
}

.w-3 {
    width: 0.75rem;
}

.h-3 {
    height: 0.75rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.font-mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .workshop-hero {
        padding-top: 80px;
    }
    
    .benefit-card {
        margin-bottom: 1rem;
    }
    
    .pricing-card {
        margin: 1rem;
    }
}

/* AI Workshop Styles */
/* Improved spacing */
.aiworkshop section {
    padding: 100px 0;
}

/* Section background alternation */
.aiworkshop section:nth-of-type(odd) {
    background-color: white;
}

.aiworkshop section:nth-of-type(even) {
    background-color: #355E3B;
    color: white;
}

/* Override for learn-more-section to ensure it's always white */
.aiworkshop section.learn-more-section {
    background-color: white !important;
    color: inherit !important;
}

/* Special sections */
.aiworkshop .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0;
    background: linear-gradient(135deg, #355E3B 0%, #1a2f1d 100%);
    color: white;
    position: relative;
}

.aiworkshop #instructor {
    background: linear-gradient(135deg, #355E3B 0%, #1a2f1d 100%) !important;
    color: white;
    padding: 80px 0;
}

/* Better card styling */
.aiworkshop .feature-card, 
.aiworkshop .audience-card {
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Card background alternation */
.aiworkshop section:nth-of-type(odd) .feature-card,
.aiworkshop section:nth-of-type(odd) .audience-card {
    background: #f8e9d2;
}

.aiworkshop section:nth-of-type(even) .feature-card,
.aiworkshop section:nth-of-type(even) .audience-card {
    background: white;
    color: #355E3B;
}

.aiworkshop .feature-card:hover, 
.aiworkshop .audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Improved button styling */
.aiworkshop .btn-primary {
    background: #D16F4B;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(209, 111, 75, 0.3);
}

.aiworkshop .btn-primary:hover {
    background: #b85e3f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(209, 111, 75, 0.4);
}

/* Better pricing card */
.aiworkshop .pricing-card {
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    background: white;
}

.aiworkshop .price {
    font-size: 3.5rem;
    font-weight: 700;
    color: #355E3B;
    margin: 2rem 0;
}

.aiworkshop .pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.aiworkshop .pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-size: 1.1rem;
}

.aiworkshop .pricing-features li:last-child {
    border-bottom: none;
}

/* Better alert styling */
.aiworkshop .alert-warning {
    background: #fff3e6;
    border: none;
    border-radius: 10px;
    color: #D16F4B;
    padding: 1rem;
}

/* Improved typography */
.aiworkshop h1, 
.aiworkshop h2, 
.aiworkshop h3, 
.aiworkshop h4, 
.aiworkshop h5, 
.aiworkshop h6 {
    font-weight: 600;
    line-height: 1.3;
}

.aiworkshop .section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: inherit;
}

.aiworkshop section:nth-of-type(even) .section-title {
    color: white;
}

.aiworkshop section:nth-of-type(odd) .section-title {
    color: #355E3B;
}

/* Terminal styling */
.aiworkshop .bg-forest-600 {
    background-color: #2c4a32;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    font-family: 'Courier New', monospace;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.aiworkshop .flex.items-center {
    display: flex;
    align-items: center;
    padding: 0 0 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 15px;
}

.aiworkshop .rounded-full {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}

.aiworkshop .bg-red-400 {
    background-color: #ff5f56;
}

.aiworkshop .bg-yellow-400 {
    background-color: #ffbd2e;
}

.aiworkshop .bg-green-400 {
    background-color: #27c93f;
}

.aiworkshop .font-mono {
    padding: 10px 0;
}

.aiworkshop .font-mono div {
    line-height: 1.6;
    margin-bottom: 8px;
    font-size: 14px;
    color: #a3b8a5;
}

.aiworkshop .text-forest-300 {
    color: #4CAF50;
    margin-right: 10px;
}

.aiworkshop .animate-pulse {
    animation: cursor-blink 1s step-end infinite;
}

@keyframes cursor-blink {
    50% { opacity: 0; }
}

/* Fix for instructor section on desktop */
.aiworkshop #instructor .container {
    max-width: 1200px;
}

.aiworkshop #instructor img {
    max-width: 300px;
    margin: 0 auto;
}

/* Learn More Section styling */
.aiworkshop .learn-more-section {
    background-color: white;
    padding: 80px 0;
    border-bottom: 1px solid rgba(53, 94, 59, 0.2);
}

.aiworkshop .learn-more-section h3 {
    color: #355E3B;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 2rem;
}

.aiworkshop .learn-more-section p {
    color: #555;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.aiworkshop .learn-more-section .btn-primary {
    background: #D16F4B;
    border: none;
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(209, 111, 75, 0.3);
}

.aiworkshop .learn-more-section .btn-primary:hover {
    background: #b85e3f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(209, 111, 75, 0.4);
}

.aiworkshop .learn-more-logo {
    max-width: 200px;
    margin-bottom: 20px;
}

.aiworkshop .learn-more-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.aiworkshop .learn-more-tags span {
    background-color: #f8e9d2;
    color: #355E3B;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Version card images styling */
.aiworkshop .version-img {
    height: 250px;
    width: 100%;
    object-fit: contain;
    margin-bottom: 1rem;
}

/* Workshop Hero Styles */
.workshop-hero {
    background: linear-gradient(135deg, #355E3B 0%, #1a2f1d 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Responsive styles */
@media (max-width: 991px) {
    .aiworkshop .learn-more-section .col-lg-4 {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .aiworkshop section {
        padding: 60px 0;
    }
    
    .aiworkshop .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .aiworkshop .hero-content {
        padding-top: 80px;
        position: relative;
        z-index: 10;
    }
    
    .aiworkshop .section-title {
        font-size: 2rem;
    }
    
    .aiworkshop .pricing-card {
        padding: 2rem;
    }
    
    .aiworkshop .price {
        font-size: 2.5rem;
    }
    
    .workshop-hero {
        min-height: auto !important;
        height: auto !important;
        padding: 100px 0 60px !important;
        position: relative !important;
    }
    
    .hero-content {
        padding-top: 0 !important;
    }
    
    .hero .container {
        padding-bottom: 2rem;
    }
    
    .row.align-items-center {
        margin-top: 0;
    }
}

/* Wistia Player Styles */
/* Wistia player base styles */
wistia-player {
    margin-bottom: 0; /* Remove default margin */
    display: block;
}

.video-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}


.footer-logo {
    height: 40px; 
    margin-right: 10px;
}

.aiworkshop .pricing-card {
    max-width: 500px;
}

/* Inscription section styles */
.aiworkshop #inscripcion {
    background-color: #355E3B; 
    color: white;
}

.aiworkshop #inscripcion .section-title,
.aiworkshop #inscripcion .lead {
    color: white;
}

/* Check list and X list styles */
.aiworkshop .check-list li {
    color: #27ae60; 
    font-size: 1.15em;
}

.aiworkshop .x-list li {
    color: #e74c3c; 
    font-size: 1.15em;
}

    
      /* Styling for consistent team cards */
      .team-card {
        height: 650px;
        margin-bottom: 20px;
      }
      
      .team-card .card {
        height: 100%;
        border: none;
        border-radius: 8px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        background-color: transparent;
      }
      
      .team-card .card-img {
        height: 300px;
        flex: 0 0 300px;
        background-color: #355E3B;
        overflow: hidden;
        position: relative;
      }
      
      .team-card .card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
      }
      
      .team-card .card-body {
        background-color: #f8e7d1;
        height: 350px;
        flex: 0 0 350px;
        padding: 25px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        overflow: hidden;
        border-radius: 0 0 8px 8px;
        position: relative;
        z-index: 1;
      }
      
      .team-card .card-body h5 {
        margin-bottom: 5px;
        font-weight: bold;
        color: #355E3B;
        width: 100%;
      }
      
      .team-card .card-body .role {
        font-weight: 600;
        color: #355E3B;
        margin-bottom: 15px;
        width: 100%;
      }
      
      .team-card .card-body p:not(.role) {
        margin: 0;
        font-size: 14px;
        line-height: 1.6;
        color: #333;
        width: 100%;
      }
      
      /* Navigation buttons styling */
      .team-carousel .swiper-button-next,
      .team-carousel .swiper-button-prev {
        color: #355E3B;
        background: rgba(248, 231, 209, 0.7);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        --swiper-navigation-size: 20px;
      }
      
      .team-carousel .swiper-button-next:after,
      .team-carousel .swiper-button-prev:after {
        font-size: 20px;
      }
      
      .team-carousel .swiper-button-disabled {
        opacity: 0.3;
      }
      
      /* Mobile adjustments */
      @media (max-width: 767px) {
        .team-card {
          height: 600px;
        }
        
        .team-card .card-img {
          height: 250px;
          flex: 0 0 250px;
        }
        
        .team-card .card-body {
          height: 350px;
          flex: 0 0 350px;
          padding: 20px;
        }
      }
      
      /* Styling for consistent team cards */
      .team-card .card {
        height: 100%;
        border: none;
        border-radius: 0;
        display: flex;
        flex-direction: column;
      }
      .team-card .card-body {
        background-color: #f8e7d1;
        height: 200px; /* Fixed height for all card bodies */
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        text-align: center;
        border-radius: 0;
        overflow-y: auto;
      }
      .team-card .card-img {
        height: 350px; /* Fixed height for all images */
        background-color: #355E3B;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        position: relative;
        padding: 0;
        border-radius: 0;
        flex: 0 0 auto; /* Prevent image from stretching */
      }
      .team-card .card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        mix-blend-mode: normal;
        opacity: 1;
        filter: brightness(1) contrast(1);
      }
      .team-card .card-body h5 {
        margin-bottom: 5px;
        font-weight: bold;
        color: #355E3B;
      }
      .team-card .card-body .role {
        font-weight: 600;
        color: #355E3B;
        margin-bottom: 10px;
      }
      .team-card .card-body p:not(.role) {
        margin: 0;
        font-size: 14px;
        line-height: 1.5;
        color: #333;
      }
      
      /* Navigation buttons styling */
      .team-carousel .swiper-button-next,
      .team-carousel .swiper-button-prev {
        color: #355E3B;
        background: rgba(248, 231, 209, 0.7);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        --swiper-navigation-size: 20px;
      }
      
      .team-carousel .swiper-button-next:after,
      .team-carousel .swiper-button-prev:after {
        font-size: 20px;
      }
      
      .team-carousel .swiper-button-disabled {
        opacity: 0.3;
      }

      /* Add responsive adjustments */
      @media (max-width: 768px) {
        .team-card .card-body {
          height: 200px; /* Keep consistent height on mobile */
        }
        .team-card .card-img {
          height: 300px;
        }
      }

      /* Position the navigation arrows outside the container */
      .team-carousel {
        position: relative;
        overflow: visible !important;
      }

      .team-carousel .swiper-button-next {
        right: -50px;
      }

      .team-carousel .swiper-button-prev {
        left: -50px;
      }

      @media (max-width: 991px) {
        .team-carousel .swiper-button-next {
          right: -20px;
        }
        
        .team-carousel .swiper-button-prev {
          left: -20px;
        }
      }

      @media (max-width: 576px) {
        .team-carousel .swiper-button-next {
          right: 0px;
        }
        
        .team-carousel .swiper-button-prev {
          left: 0px;
        }
      }

      /* Position the navigation arrows outside the container */
      .team-carousel {
        position: relative;
        overflow: visible !important;
      }

      .team-carousel .swiper-button-next,
      .team-carousel .swiper-button-prev {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        color: #355E3B;
        background: rgba(248, 231, 209, 0.9);
        border-radius: 50%;
        --swiper-navigation-size: 24px;
        z-index: 20;
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
      }

      .team-carousel .swiper-button-next {
        right: -65px;
      }

      .team-carousel .swiper-button-prev {
        left: -65px;
      }

      @media (max-width: 1200px) {
        .team-carousel .swiper-button-next {
          right: -55px;
        }
        
        .team-carousel .swiper-button-prev {
          left: -55px;
        }
      }

      @media (max-width: 991px) {
        .team-carousel .swiper-button-next {
          right: -30px;
        }
        
        .team-carousel .swiper-button-prev {
          left: -30px;
        }
      }

      @media (max-width: 767px) {
        .team-carousel .swiper-button-next {
          right: -15px;
          width: 40px;
          height: 40px;
          --swiper-navigation-size: 20px;
        }
        
        .team-carousel .swiper-button-prev {
          left: -15px;
          width: 40px;
          height: 40px;
          --swiper-navigation-size: 20px;
        }
      }

      /* Position the navigation arrows outside the container */
      .team-carousel {
        position: relative;
        overflow: visible !important;
      }

      .team-carousel .swiper-button-next {
        right: -100px !important;
      }

      .team-carousel .swiper-button-prev {
        left: -100px !important;
      }

      @media (max-width: 1200px) {
        .team-carousel .swiper-button-next {
          right: -80px !important;
        }
        
        .team-carousel .swiper-button-prev {
          left: -80px !important;
        }
      }

      @media (max-width: 991px) {
        .team-carousel .swiper-button-next {
          right: -50px !important;
        }
        
        .team-carousel .swiper-button-prev {
          left: -50px !important;
        }
      }

      @media (max-width: 767px) {
        .team-carousel .swiper-button-next {
          right: -30px !important;
        }
        
        .team-carousel .swiper-button-prev {
          left: -30px !important;
        }
      }

      .team-carousel {
        overflow: visible;
      }

      .swiper-slide {
        transition: all 0.3s ease;
      }

      /* Ensure there's spacing between slides on large screens */
      @media (min-width: 1025px) {
        .team-carousel-container {
          padding: 0 25px;
        }
      }

      /* Improved Agenda Una Llamada button styling */
      .contact-button-metric {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        background-color: #D16F4B;
        color: #ffffff;
        font-weight: 600;
        padding: 11px 28px;
        border-radius: 50px;
        transition: all 0.3s ease;
        text-decoration: none;
        box-shadow: 0 4px 12px rgba(209, 111, 75, 0.3);
        border: 2px solid #D16F4B;
        position: relative;
        overflow: hidden;
        z-index: 1;
        margin-top: 15px;
        margin-bottom: 5px;
        letter-spacing: 0.5px;
        font-size: 16px;
        line-height: 1.5;
        box-sizing: border-box;
        height: auto;
      }

      .contact-button-metric:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 0%;
        height: 100%;
        background-color: #ffffff;
        transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
        z-index: -1;
        border-radius: 48px;
      }

      .contact-button-metric:hover,
      .contact-button-metric:focus {
        color: #D16F4B;
        transform: translateY(-3px);
        box-shadow: 0 6px 16px rgba(209, 111, 75, 0.4);
        animation: pulse 1.5s infinite;
        outline: none;
        text-decoration: none;
        border: 2px solid #D16F4B;
      }

      .contact-button-metric:focus {
        box-shadow: 0 0 0 3px rgba(209, 111, 75, 0.4), 0 6px 16px rgba(209, 111, 75, 0.3);
      }

      @keyframes pulse {
        0% {
          box-shadow: 0 0 0 0 rgba(209, 111, 75, 0.7);
        }
        70% {
          box-shadow: 0 0 0 10px rgba(209, 111, 75, 0);
        }
        100% {
          box-shadow: 0 0 0 0 rgba(209, 111, 75, 0);
        }
      }

      .contact-button-metric:hover:before,
      .contact-button-metric:focus:before {
        width: 100%;
      }

      .contact-button-metric svg {
        width: 32px;
        height: 32px;
        min-width: 32px;
        transition: all 0.3s ease;
        flex-shrink: 0;
        display: block;
        position: relative;
      }

      .contact-button-metric span {
        position: relative;
        z-index: 2;
        transition: all 0.3s ease;
        display: inline-block;
        line-height: 1.2;
        vertical-align: middle;
      }

      .contact-button-metric:hover svg,
      .contact-button-metric:focus svg {
        transform: rotate(-10deg) scale(1.1);
      }

      .contact-button-metric:hover svg circle,
      .contact-button-metric:focus svg circle {
        fill: #D16F4B;
      }

      .contact-button-metric:hover svg path,
      .contact-button-metric:focus svg path {
        fill: #ffffff;
      }

      .contact-button-metric:active {
        transform: translateY(0);
        box-shadow: 0 2px 8px rgba(209, 111, 75, 0.4);
        animation: none;
      }

      @media (max-width: 768px) {
        .contact-button-metric {
          padding: 10px 20px;
          font-size: 14px;
          margin-top: 10px;
          line-height: 1.4;
        }
        
        .contact-button-metric svg {
          width: 26px;
          height: 26px;
          min-width: 26px;
        }
      }
      
      @media (max-width: 576px) {
        .contact-button-metric {
          width: 100%;
          justify-content: center;
          padding: 10px 16px;
          gap: 10px;
        }
        
        .contact-button-metric svg {
          width: 24px;
          height: 24px;
          min-width: 24px;
        }
      }


/* Team carousel specific styles */
.team-section {
  padding: 80px 0;
  overflow: visible;
}

.team-carousel-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 0 20px;
}

.team-card {
  height: 650px;
  margin-bottom: 20px;
}

.team-card .card {
  height: 100%;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background-color: transparent;
}

.team-card .card-img {
  height: 300px;
  flex: 0 0 300px;
  background-color: #355E3B;
  overflow: hidden;
  position: relative;
}

.team-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.team-card .card-body {
  background-color: #f8e7d1;
  height: 350px;
  flex: 0 0 350px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  overflow: hidden;
  border-radius: 0 0 8px 8px;
  position: relative;
  z-index: 1;
}

.team-card .card-body h5 {
  margin-bottom: 5px;
  font-weight: bold;
  color: #355E3B;
  width: 100%;
}

.team-card .card-body .role {
  font-weight: 600;
  color: #355E3B;
  margin-bottom: 15px;
  width: 100%;
}

.team-card .card-body p:not(.role) {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  width: 100%;
}

/* Navigation buttons */
.team-nav-prev,
.team-nav-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  color: #355E3B !important;
  background: rgba(248, 231, 209, 0.9) !important;
  border-radius: 50%;
  --swiper-navigation-size: 18px;
  z-index: 20;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.team-nav-prev:hover,
.team-nav-next:hover {
  opacity: 1;
  background: rgba(248, 231, 209, 1) !important;
  transform: translateY(-50%) scale(1.05);
}

.team-nav-prev {
  left: 5px;
}

.team-nav-next {
  right: 5px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .team-nav-prev {
    left: 0;
  }
  
  .team-nav-next {
    right: 0;
  }
}

@media (max-width: 991px) {
  .team-nav-prev {
    left: 0;
  }
  
  .team-nav-next {
    right: 0;
  }
}

@media (max-width: 767px) {
  .team-section {
    padding: 50px 0;
  }
  
  .team-card {
    height: 610px;
  }
  
  .team-card .card-img {
    height: 250px;
    flex: 0 0 250px;
  }
  
  .team-card .card-body {
    height: 360px;
    flex: 0 0 360px;
    padding: 20px;
  }
  
  .team-nav-prev {
    left: 0;
    width: 35px;
    height: 35px;
    --swiper-navigation-size: 16px;
  }
  
  .team-nav-next {
    right: 0;
    width: 35px;
    height: 35px;
    --swiper-navigation-size: 16px;
  }
}
* {
  backface-visibility: hidden;
}

/* Our Services Section Styles */
.our-services-section {
    background: #F8E7D1;
    padding: 80px 0 40px 0;
    margin: 0;
}

.our-services-section .row {
    display: flex;
    align-items: stretch;
}

.services-title {
    color: #355E3B;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.services-list {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-item {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    min-height: 70px;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item:hover {
    background-color: #f8fafe;
}

.service-item.active {
    background-color: #f3f0e6;
    border-left: 4px solid #D16F4B;
}

.service-icon {
    width: 40px;
    height: 40px;
    background: #f8f4ee;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    color: #D16F4B;
}

.service-item.active .service-icon {
    background: #D16F4B;
    color: white;
}

.service-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    flex: 1;
}

.service-badge {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 500;
    margin-left: 12px;
}

.service-badge.new,
.service-badge:not(.popular):not(.ended) {
    background: #e8f5e8;
    color: #2e7d32;
}

.service-badge.popular {
    background: #e8f5e8;
    color: #2e7d32;
}

.service-badge.ended {
    background: #fff3e0;
    color: #f57c00;
}

.service-badge.coming-soon {
    background: #f3e5f5;
    color: #7b1fa2;
}

.service-time {
    font-size: 12px;
    color: #666;
    margin-left: 12px;
}

.service-price {
    font-size: 12px;
    color: #ff6b35;
    font-weight: 600;
    margin-left: 12px;
}

/* Service Details Area */
.service-details {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    min-height: auto;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-detail {
    display: none;
    height: 100%;
    overflow-y: auto;
    text-align: center;
}

.service-detail.active {
    display: flex;
    flex-direction: column;
}

.service-detail .get-quote-btn {
    margin: 20px auto 0;
}

.asterisk-note {
    font-size: 12px;
    color: #666;
    font-style: italic;
    margin: 10px 0 5px 0;
    text-align: center;
}

.service-detail .service-header,
.service-detail .service-description,
.service-detail .key-benefits {
    text-align: left;
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f8f4ee 0%, #f3f0e6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: #D16F4B;
}

.service-header h2 {
    color: #355E3B;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

.service-description {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 32px;
}

.key-benefits h3 {
    color: #2c3e50;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.key-benefits ul {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.key-benefits li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 16px;
    color: #555;
}

.key-benefits li svg {
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.get-quote-btn {
    background: #D16F4B;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
    width: auto;
    min-width: 160px;
    max-width: 220px;
}

.get-quote-btn:hover {
    background: #b85d40;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(209, 111, 75, 0.3);
}

.get-quote-btn.disabled {
    background: #ccc;
    color: #666;
    cursor: not-allowed;
    opacity: 0.6;
}

.get-quote-btn.disabled:hover {
    background: #ccc;
    transform: none;
    box-shadow: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .our-services-section {
        padding: 40px 0;
        margin: 0; /* Remove margin to prevent whitespace */
    }
    
    .our-services-section .row {
        display: block;
    }
    
    .services-title {
        font-size: 24px;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .services-list {
        margin-bottom: 24px;
        max-height: 400px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }
    
    .services-list::-webkit-scrollbar {
        width: 6px;
    }
    
    .services-list::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 3px;
    }
    
    .services-list::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 3px;
    }
    
    .services-list::-webkit-scrollbar-thumb:hover {
        background: #555;
    }
    
    .service-item {
        padding: 16px 20px;
        min-height: auto;
        flex: none;
    }
    
    .service-item.active {
        position: sticky;
        top: 0;
        background-color: #e3f2fd;
        z-index: 10;
    }
    
    .service-icon {
        width: 32px;
        height: 32px;
        margin-right: 12px;
    }
    
    .service-content h3 {
        font-size: 14px;
    }
    
    .service-badge,
    .service-time,
    .service-price {
        font-size: 10px;
        padding: 2px 6px;
    }
    
    .service-details {
        padding: 24px;
        margin-top: 0;
        min-height: auto;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
    }
    
    .service-icon-large {
        width: 60px;
        height: 60px;
        margin-right: 0;
        margin-bottom: 16px;
    }
    
    .service-header h2 {
        font-size: 24px;
    }
    
    .service-description {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .key-benefits h3 {
        font-size: 18px;
    }
    
    .key-benefits li {
        font-size: 14px;
    }
    
    .get-quote-btn {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
}
/* FAQ Section Styles */
.faq-section {
  background-color: #fbf2e6;
}

.faq-section .accordion-item {
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

.faq-section .accordion-button {
  background-color: #fff;
  color: #2f4f2f;
  font-weight: 500;
  padding: 20px;
  font-size: 1.1rem;
}

.faq-section .accordion-button:not(.collapsed) {
  background-color: #2f4f2f;
  color: #fff;
  box-shadow: none;
}

.faq-section .accordion-button:focus {
  box-shadow: none;
  border-color: #2f4f2f;
}

.faq-section .accordion-body {
  padding: 20px;
  background-color: #fff;
  color: #666;
  line-height: 1.8;
}

/* Projects Carousel Section */
.projects-carousel-section {
  background-color: #fbf2e6;
  padding: 50px 0; /* Reduced from 80px */
}

.projects-swiper {
  padding: 20px 0 40px; /* Reduced from 40px 0 60px */
}

.project-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  min-height: 400px;
}


.projects-carousel-section .project-card .col-md-6 {
  padding: 15px;
}

.projects-carousel-section .project-card .row {
  display: flex;
  align-items: stretch;
}

.project-title {
  color: #2f4f2f;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.project-description {
  color: #666;
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 1rem;
}

.project-results {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-top: 20px;
}

.project-results h4 {
  color: #d16f4b;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.project-results ul {
  list-style: none;
  padding: 0;
}

.project-results li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: #555;
  line-height: 1.6;
}

.project-results li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #d16f4b;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Swiper navigation for projects */
.projects-swiper .swiper-button-prev,
.projects-swiper .swiper-button-next {
  color: #2f4f2f;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.projects-swiper .swiper-button-prev:after,
.projects-swiper .swiper-button-next:after {
  font-size: 20px;
  font-weight: bold;
}

.projects-swiper .swiper-pagination {
  position: relative;
  bottom: -10px; /* Bring dots closer to content */
  padding-top: 10px;
}

.projects-swiper .swiper-pagination-bullet {
  background: #2f4f2f;
  opacity: 0.3;
  margin: 0 3px; /* Reduce space between dots */
}

.projects-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: #d16f4b;
}

@media (max-width: 768px) {
  /* Hero Mobile Fix - Add more padding to avoid navbar overlap */
  .hero {
    padding-top: 120px !important;
    min-height: 550px;
    padding-bottom: 5px; /* Minimal padding on mobile */
  }

  .hero .header-container {
    padding-top: 20px;
  }

  /* Content section mobile specific */
  .content-section {
    padding: 30px 20px 50px; /* Reduced top padding on mobile */
  }

  /* Projects section mobile adjustments */
  .projects-carousel-section {
    padding: 30px 0;
  }

  .projects-swiper {
    padding: 15px 0 30px;
  }

  .project-card {
    padding: 20px;
  }
  
  .project-title {
    font-size: 1.5rem;
  }
  
  .project-card .row {
    flex-direction: column;
  }
  
  .project-card img {
    margin-bottom: 20px;
  }
  
  /* Removed mobile image fix - using inline styles */
  
  /* FAQ Mobile Improvements */
  .faq-section {
    padding: 40px 0;
  }
  
  .faq-section .container {
    padding: 0 15px;
  }
  
  .accordion-button {
    padding: 15px;
    font-size: 16px;
  }
  
  .accordion-body {
    padding: 15px;
    font-size: 14px;
    line-height: 1.6;
  }
}

/* Removed all complex CSS - images now use inline styles */

/* Video Container Spacing - Override all other styles */
#solutions-main-section .video-container {
  margin-top: -30px; /* Move video 30px higher */
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  #solutions-main-section {
    padding: 25px 0 40px 0; /* Even less padding on mobile */
  }

  #solutions-main-section .video-container {
    margin-top: -30px; /* Keep same 30px higher on mobile too */
    margin-bottom: 10px;
  }
}

/* ===== SHARED CONTACT FORM (homepage + /contact/) =====
   Moved here from index.html inline <style> so /contact/index.html can reuse it.
   Class names are scoped to the form via .form-container parent where possible to
   avoid colliding with Bootstrap's own .form-group / .form-control rules. */
.form-wrapper {
    background: #f8f9fa;
    padding: 0 24px 60px;
}

.form-wrapper .form-container {
    background: white;
    max-width: 500px;
    margin: -15px auto 0;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 10;
}

.form-wrapper .form-container-full {
    max-width: 600px;
    padding: 28px 32px;
}

.form-wrapper .form-group {
    margin-bottom: 18px;
}

.form-wrapper .form-container h5 {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.form-wrapper .form-container input[type="text"],
.form-wrapper .form-container input[type="email"],
.form-wrapper .form-container input[type="tel"],
.form-wrapper .form-container select,
.form-wrapper .form-container textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    min-height: 44px;
}

.form-wrapper .form-container textarea {
    resize: vertical;
    min-height: 70px;
}

.form-wrapper .form-container input:focus,
.form-wrapper .form-container select:focus,
.form-wrapper .form-container textarea:focus {
    outline: none;
    border-color: #D16F4B;
}

.form-wrapper .radio-group,
.form-wrapper .checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.form-wrapper .radio-label,
.form-wrapper .checkbox-label {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: background 0.2s ease;
}

.form-wrapper .radio-label:hover,
.form-wrapper .checkbox-label:hover {
    background: #e8e9ea;
}

.form-wrapper .radio-label input,
.form-wrapper .checkbox-label input {
    accent-color: #D16F4B;
    width: 14px;
    height: 14px;
}

.form-wrapper .form-container .submit-btn {
    width: 100%;
    background: #D16F4B;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    font-family: 'Poppins', sans-serif;
    margin-top: 8px;
}

.form-wrapper .form-container .submit-btn:hover {
    background: #b95f3f;
}

/* ===== AI TRUTH CARDS — stack to single column on mobile =====
   The grid uses inline `grid-template-columns: 1fr 1fr` on the div, which
   doesn't shrink below the cards' min-content width and overflows the viewport
   below ~600px. Force single column on mobile. */
@media (max-width: 767px) {
    .ai-truth-cards {
        grid-template-columns: 1fr !important;
    }
}

