* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}
body {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
}
:root {
    --yellow-primary:#ffb703;
    --blue-primary: #004e98;
    --blue-secondary: #13315c;
    --blue-third: #0b2545;
    --white: #FFFFFF;
    --black: #000000;
}
.about-text,
.about-title,
.proyectos-title,
.servicios-title,
.misionvision-title,
.mision-title,
.vision-title,
.aliados-title,
.oficinas-title,
.opiniones-title,
.contacto-title {
    font-weight: 900;
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    margin-bottom: 0.6rem;
}
.big-title-five,
.big-title-five-one,
.big-title-five-two {
    font-size: clamp(2rem, 5vw, 4rem);
}
.big-title-six,
.big-title-five-two,
.proyectos-paragraph-two,
.proyectos-title,
.mision-title,
.vision-title,
.misionvision-paragraph,
.opiniones-section,
.opiniones-title,
.opiniones-arrow,
.contacto-form-btn {
    color: var(--white);
}
.big-title-six {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}
.big-title-five-two {
    color: var(--yellow-primary)
}
.about-title,
.proyectos-title,
.servicios-title,
.misionvision-title,
.mision-title,
.vision-title,
.aliados-title,
.oficinas-title,
.opiniones-title,
.contacto-title {
    opacity: 0;
    transform: scale(0.96);
}
.animate-zoom {
    animation: zoomForward 2.4s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
@keyframes zoomForward {
    to {
        opacity: 1;
        transform: scale(1.04);
    }
}
.about-paragraph,
.card-paragraph,
.proyectos-paragraph,
.proyectos-paragraph-two,
.aliados-paragraph,
.misionvision-paragraph,
.contacto-paragraph,
.planta-texto {
    font-size: clamp(1rem, 4vw, 1.3rem);
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    text-align: justify;
}
.big-title-three {
    color: var(--blue-primary);
}
.about-paragraph,
.proyectos-paragraph,
.proyectos-paragraph-two,
.aliados-paragraph,
.misionvision-paragraph,
.contacto-paragraph,
.planta-paragraph {
    font-size: clamp(1rem, 4vw, 1.3rem);
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    text-align: justify;
    opacity: 0;
    transform: translateY(60px);
}
.animate-paragraph-zoom {
    animation: fadeInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.contacto-paragraph {
    text-align: left;
}
.space {
    padding: 0.1rem;
    background-color: #44444428;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 0.9rem 1.4rem;
}
.header-container-three {
    display: flex;
    align-items: center;
}
.logo img {
    width: clamp(150px, 20vw, 210px);
}
nav.d-none.d-lg-block {
    display: block !important;
}
nav .nav {
    display: flex;
    gap: 2rem;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
}
.nav-link {
    text-decoration: none;
    color: var(--blue-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}
.nav-link:hover {
    color: var(--yellow-primary);
}
.sidebar-auth {
    gap: 1rem;
}
.btn {
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border: 1px solid transparent;
}
.sign-in {
    background-color: transparent;
    border-color: var(--blue-primary);
    color: var(--blue-primary);
}
.contactanos {
    background-color: var(--blue-primary);
    border-color: var(--blue-primary);
    color: white;
}
.contactanos:hover,
.sign-in:hover {
    background-color: var(--yellow-primary);
    color: var(--blue-primary);
}
.navbar-toggler {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: none;
}
.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    transition: transform 0.3s ease;
}
/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background-color: white;
    z-index: 1050;
    transition: right 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.sidebar.show {
    right: 0;
}
.sidebar-overlay.show {
    opacity: 1;
    visibility: visible;
}
.close-sidebar {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #6c757d;
    line-height: 1;
    padding: 0 0.5rem;
}
.header-container-three .logo {
    width: clamp(150px, 15vw, 200px);
}
.sidebar-auth .btn {
    padding: 0.75rem 1rem;
}
/* Responsive */
@media (max-width: 991.98px) {
    .header-container {
        justify-content: space-between;
    }
    .header-container-three {
        width: auto;
        flex-grow: 1;
        justify-content: space-between;
    }
    .navbar-toggler {
        display: block;
        margin-left: 1rem;
    }
    nav.d-none.d-lg-block {
        display: none !important;
    }
    .logo img {
        width: clamp(100px, 15vw, 120px);
    }
}
/*hero section*/
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #004382ab;
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    opacity: 0;
    transform: translateY(60px);
    padding-bottom: 2rem;
}
.animate-hero-fadeInUp {
    animation: fadeInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-logo {
    width: clamp(200px, 22vw, 330px);
}
.hero h1 {
    font-size: clamp(1.5rem, 6vw, 3rem);
    letter-spacing: 0.2rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.cta-button {
    width: clamp(100px, 20vw, 150px);
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    background-color: var(--white);
    color: var(--blue-secondary);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.cta-button:hover {
    font-weight: bold;
    background-color: var(--yellow-primary);
    color: var(--blue-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
/* Sección minimalista Sobre Nosotros */
.about-minimal {
    padding: clamp(0.5rem, 2vw, 2rem) clamp(1rem, 3vw, 2rem) clamp(0.5rem, 2vw, 2rem) clamp(1rem, 3vw, 2rem);
    display: column;
    align-items: center !important;
    justify-content: center !important;
    background: var(--white);
}
.about-text {
    flex: 1;
    min-width: 220px;
    margin: clamp(2rem, 6vw, 1rem) clamp(1rem, 3vw, 2rem) clamp(2rem, 6vw, 4rem) clamp(1rem, 3vw, 2rem);
}
@media (max-width: 1000px) {
    .about-minimal {
        flex-direction: column;
        align-items: flex-start;
    }
}

.about-title {
    color: var(--blue-primary);
    animation: zoomForward 1.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    opacity: 0;
    transform: scale(0.96);
}
.animate-zoom {
    animation: zoomForward 1.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
@keyframes zoomForward {
    to {
        opacity: 1;
        transform: scale(1.04);
    }
}
.about-paragraph {
    text-align: justify;
    color: #000000;
}
.about-image {
    flex: 1;
    display: flex;
    align-items: center !important;
    justify-content: center !important;
}
.animate-image-fadeInRight {
    animation: fadeInRight 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/*ESTA PARTE ESTAMOS TRABAJANDO*/

.container-image-title {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      max-width: 1200px;
      margin: 2rem 2rem 0 2rem;
      /*padding: 0 1rem;*/
      flex-wrap: wrap;
    }

    /* Texto */
    .title-one h2 {
        font-size: clamp(2rem, 6vw, 8rem);
      /*font-size: 2.8rem;*/
      font-weight: 900;
      color: var(--yellow-primary);
      margin: 0;
    }
    .mas-span {
        color: #222;
        font-size: clamp(3rem, 7vw, 8rem);
        color: var(--blue-primary);
        font-weight: 900;
        margin: 0;
    }

    .title-one {
        font-size: clamp(2rem, 7vw, 9rem);
      color: #2a2a8a; /* Color de énfasis */
    }
    .constructora-span {
        color: var(--blue-primary);
        font-size: clamp(2rem, 6vw, 8rem);
    }

    .title-one {
      flex: 1 1 40%;
      min-width: 250px;
    }

    /* Imagen */
    .image-team {
      flex: 1 1 55%;
      display: flex;
      justify-content: center;
    }

    .image-team img {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
      object-fit: cover;
      border-top-left-radius: 150px;
      border-right: 4px solid var(--yellow-primary);
    }
    /* Responsive */
    /* Responsive */
@media (max-width: 768px) {
    
    .image-team img {
      border-radius: 12px;
    }
  .container-image-title {
    flex-direction: column;
    text-align: center;
  }

  .title-one {
    order: -1; /* Hace que el texto suba arriba de la imagen */
  }

  .title-one h2 {
    font-size: 2.2rem;
    line-height: 0.9;
  }

  .image-team {
    width: 100%;
  }
}


.about-image img {
    /*max-width: 100%;*/
    height: clamp(300px, 55vw, 550px);
    width: clamp(100%, 55vw, 550px);
    border-right: #003366 solid 8px;
    border-bottom: #003366 solid 8px;
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
    background: #ccc;
    object-fit: cover;
    opacity: 0;
    transform: translateX(60px);
    /*border-radius: 10px;*/
}
/*Fin seccion sobre nosotros*/
/*Proyectos seccion*/
.section-proyectos {
    padding: clamp(1rem, 5vw, 3rem) clamp(1rem, 3vw, 2rem) clamp(1rem, 5vw, 4rem) clamp(1rem, 3vw, 2rem);
    background-color: var(--yellow-primary);
    align-items: center;
}
.proyectos-text {
    align-items: center;
    text-align: center;
    margin: 0 clamp(1rem, 3vw, 3rem) clamp(1.5rem, 3vw, 3rem) clamp(1rem, 3vw, 3rem);
}
.proyectos-paragraph {
    color: #222;
    text-align: justify;
}
.proyectos-title {
    font-size: clamp(2rem, 6vw, 4rem);
}
.negrita {
    font-weight: bold;
    font-size: 22px;
}
/*.py-5 {
    padding: 0 !important;
}*/
.nav-scroller {
    position: relative;
    z-index: 2;
    height: 2.75rem;
    overflow-y: hidden
}
.nav-scroller .nav {
    display: flex;
    flex-wrap: nowrap;
    padding-bottom: 1rem;
    margin-top: -1px;
    overflow-x: auto;
    text-align: center;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch
}
.bd-mode-toggle {
    z-index: 1500
}
.bd-mode-toggle .bi {
    width: 1em;
    height: 1em
}
.bd-mode-toggle .dropdown-menu .active .bi {
    display: block !important
}
.bg-body-tertiary {
    background-color: transparent !important;
}
.card-title {
    font-size: 1.2rem;
    font-weight: bold;
}
.card-subtitle {
    font-size: 0.95rem;
    color: #888;
}
.btn-outline-secondary {
    border-radius: 20px;
    padding: 0.25rem 1.2rem;
}
.card-body .d-flex {
    gap: 1rem;
}
.col {
    border-radius: 10px !important;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}
.col:hover {
    transform: translateY(-10px) scale(1.03);
}
.card-img-container {
    max-height: 500px;
    overflow: hidden;
}
.card-img-overlay-custom {
    position: absolute;
    bottom: 0;
    top: 0;
    right: 0;
    left: 0;
    padding: 1.25rem;
    color: var(--bs-card-text-color);
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.719) 20%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.carousel-item img {
    object-fit: cover;
    height: 100%;
}
.card-text-content {
    justify-content: flex-end;
}
.modal-header {
    background-color: var(--white);
}
.modal-content {
    border: none;
    background: transparent;
}
.card-text-content {
    padding: 1.5rem;
}
.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.card-img-top {
    border-radius: 10px !important;
    object-fit: cover;
    height: 200px;
    width: 100%;
}
.album .card {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 768px) {
    .album .row {
        justify-content: center;
    }
}
@media (max-width: 575.98px) {
    .album .card {
        max-width: 98vw;
    }
}
/*Fin seccion proyectos*/
/*Seccion video*/
.section-video {
    background-color: var(--blue-primary);
    padding: clamp(1rem, 5vw, 4rem) clamp(1rem, 3vw, 2rem);
}
.container-video {
    margin: 0 auto !important;
    justify-content: center;
    align-items: center;
}
.animate-video-fadeInLeft {
    animation: fadeInLeft 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.video-flex-container {
    display: flex;
    flex-direction: wrap;
    gap: 2rem;
    max-width: 1500px;
    margin: 0 auto;
}
.video-text {
    flex: 1 1 40%;
    min-width: 250px;
    align-self: center;
    color: white;
}
.section-video-file {
    width: 100%;
    height: auto;
    border-radius: 10px;
    ;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateX(-60px);
}
.animate-video-fadeInLeft {
    animation: fadeInLeft 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@media (max-width: 1000px) {
    .video-flex-container {
        flex-direction: column;
    }
    .container-video,
    .video-text {
        flex: 1 1 100%;
    }
    .video-text {
        order: -1;
        text-align: center;
    }
}
/*Final seccion video*/
/*Seccion Servicios*/
.section-servicios {
    padding: clamp(1rem, 5vw, 4rem) clamp(1rem, 3vw, 2rem);
    background-color: var(--yellow-primary);
}
.servicios-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    color: #222;
    margin: 0 0 2rem 0 !important;
}
.big-title {
    font-size: clamp(2rem, 5vw, 4rem);
}
.services-icon {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    margin-right: 0.75rem;
}
/*Fin seccions servicios*/
/*Seccion planta asfalto*/
.planta-asfalto {
    width: 100%;
    background-color: #f8f9fa;
}
.planta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 0 auto;
    gap: 0;
}
.planta-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-sizing: border-box;
}
.planta-titulo {
    color: white;
    background-color: #222;
    text-align: right;
    padding-right: 4rem;
}
.planta-titulo h2 {
    font-weight: 800;
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin: 0;
    line-height: 1.2;
}
.planta-titulo span {
    color: var(--yellow-primary);
    display: block;
}
.planta-texto {
    background-color: #222;
    text-align: left;
    padding-left: 4rem;
}
.planta-texto p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.6;
    margin: 0;
    color: var(--white);
}
.planta-imagen-1,
.planta-imagen-2 {
    padding: 0;
}
.planta-imagen-1 img,
.planta-imagen-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (max-width: 768px) {
    .planta-grid {
        grid-template-columns: 1fr;
    }
    .planta-titulo {
        text-align: center;
        padding-right: 1.5rem;
        order: 1;
    }
    .planta-imagen-1 {
        order: 2;
    }
    .planta-texto {
        text-align: center;
        padding-left: 1.5rem;
        order: 3;
    }
    .planta-imagen-2 {
        order: 4;
    }
}
/*Seccion aliados*/
.aliados-section {
    padding: clamp(1rem, 5vw, 4rem) clamp(1rem, 3vw, 2rem);
}
.logos-carousel-section {
    margin: 2rem auto 0 auto;
    width: 100%;
    overflow: hidden;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}
.aliados-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    color: var(--blue-primary);
    text-align: center;
}
.aliados-paragraph {
    text-align: justify;
}
.big-title-two {
    font-size: clamp(2rem, 6vw, 6rem);
    color: var(--yellow-primary);
}
.big-title-four {
    font-size: clamp(2rem, 4vw, 4rem);
    color: var(--yellow-primary);
}
.logos-carousel-track {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    animation: scroll-logos 30s linear infinite;
    will-change: transform;
}
.logo-carousel-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    filter: grayscale(0.2) brightness(0.95);
    transition: filter 0.2s;
}
.logo-carousel-img:hover {
    filter: grayscale(0) brightness(1.1);
}
.logo-carousel-img[src*="logo5.png"] {
    height: 70px;
}
@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
/*Fin seccion aliados*/
/*Seccion Mision y Vision*/
.mision-vision-section {
    padding: clamp(1rem, 5vw, 4rem) clamp(1rem, 3vw, 2rem);
    background-color: #222;
}
.container-mision,
.container-vision {
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    min-height: 300px;
    position: relative;
}
.misionvision-title {
    text-align: center;
    color: var(--yellow-primary);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
}
.container-mision {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: left;
    flex-direction: row;
    position: relative;
    border-radius: 10px;
    ;
    overflow: hidden;
    margin: 2rem;
    border: solid 2px var(--yellow-primary);
    border-top: transparent;
    border-right: transparent;
}
.container-vision {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: right;
    flex-direction: row-reverse;
    position: relative;
    border-radius: 10px;
    ;
    overflow: hidden;
    margin: 2rem 2rem 0 2rem;
    border: solid 2px var(--yellow-primary);
    border-top: transparent;
    border-left: transparent;
}
.container-mision::before,
.container-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}
.container-mision>*,
.container-vision>* {
    position: relative;
    z-index: 2;
}
.container-mision .col-lg-6,
.container-vision .col-lg-6 {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
}
.div-mision,
.div-vision {
    flex-shrink: 0;
    min-width: 200px;
}
.mision-title,
.vision-title {
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 700;
    margin: 0;
}
.mision-title,
.vision-title {
    text-align: center;
}
p {
    margin-top: 0;
    margin-bottom: 0 !important;
}
.col-lg-6 {
    flex: 1;
}
/*.misionvision-paragraph {
}*/
@media (max-width: 768px) {
    .container-mision,
    .container-vision {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 3rem 1rem;
        min-height: 250px;
    }
    .container-vision {
        flex-direction: column;
    }
    .div-mision,
    .div-vision {
        min-width: auto;
        order: 1;
    }
    .col-lg-6 {
        order: 2;
    }
    .container-mision .col-lg-6,
    .container-vision .col-lg-6 {
        padding: 0 1rem;
    }
}
/*Fin seccion Mision y Vision*/
/* Seccion opiniones */
.opiniones-container {
                background-image: url("Imagenes/extras/img1.jpeg");
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
                background-attachment: fixed;
                /*background-color: #f5f5f5;*/
                padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 3vw, 2rem);
                margin: 0 auto;
                overflow: hidden;
            }

            .section-title {
                font-size: 2.5rem;
                color: #fff !important;
                font-family: "Roboto", sans-serif;
                font-weight: 700;
            }

            .section-title {
                font-weight: 900;
                text-align: center;
                margin-bottom: 40px;
                font-size: 2.5rem;
                color: #333;
                position: relative;
            }

            .section-title::after {
                content: '';
                display: block;
                width: 80px;
                height: 4px;
                background: var(--yellow-primary);
                margin: 15px auto;
                border-radius: 2px;
            }

            .opiniones-grid {
                display: grid;
                grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
                gap: 30px;
                margin-bottom: 40px;
                transition: transform 0.5s ease-in-out;
            }

            .opinion-card {
                background: white;
                border-radius: 10px;
                padding: 25px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                opacity: 0;
                transform: translateY(20px);
                transition: all 0.5s ease;
                display: flex;
                flex-direction: column;
                height: auto;
            }

            .opinion-card.visible {
                opacity: 1;
                transform: translateY(0);
            }

            .opinion-header {
                display: flex;
                align-items: center;
                margin-bottom: 15px;
            }

            .profile-img {
                width: 80px;
                height: 80px;
                border-radius: 50%;
                object-fit: cover;
                margin-right: 15px;
                border: 3px solid var(--yellow-primary);
            }

            .user-info {
                display: flex;
                flex-direction: column;
            }

            .user-name {
                font-weight: bold;
                font-size: 1.1rem;
                color: #333;
                margin-bottom: 3px;
            }

            .user-title {
                font-size: 0.85rem;
                color: #777;
                font-style: italic;
            }

            .opinion-text {
                color: #555;
                line-height: 1.6;
                font-size: 0.95rem;
            }

            .controls {
                display: flex;
                justify-content: center;
                gap: 15px;
                margin-top: 20px;
            }

            .control-btn {
                width: 12px;
                height: 12px;
                border-radius: 50%;
                background: var(--blue-primary);
                border: none;
                cursor: pointer;
                transition: all 0.3s ease;
            }

            .control-btn.active {
                background: var(--yellow-primary);
                transform: scale(1.2);
            }

            @media (max-width: 768px) {
                .opiniones-grid {
                    grid-template-columns: 1fr;
                }

                .section-title {
                    font-size: 2rem;
                }
            }

            /* Animaciones personalizadas */
            .opinion-card:nth-child(odd) {
                transition-delay: 0.1s;
            }

            .opinion-card:nth-child(even) {
                transition-delay: 0.3s;
            }

            .opinion-card:hover {
                background: #ffe091;
                transform: translateY(-5px) scale(1.02);
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
            }

            /* Clases para diferentes tamaños de opiniones */
            .opinion-large .opinion-text {
                font-size: 1.1rem;
                line-height: 1.8;
            }

            .opinion-small .opinion-text {
                font-size: 0.85rem;
            }

            .opinion-highlight {
                border-left: 4px solid var(--yellow-primary);
            }


.opiniones-section {
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--blue-third);
    padding: clamp(5rem, 8vw, 6rem) clamp(1rem, 3vw, 2rem);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.opiniones-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 37, 69, 0.65);
    pointer-events: none;
    z-index: 1;
}
.opiniones-section>* {
    position: relative;
    z-index: 2;
}
/*Fin seccion opiniones*/
/* Sección de Contacto */
.contact-section {
  padding: 4rem 1.5rem;
  background: #f9f9f9;
}

.contact-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Texto */
.contact-text {
  flex: 1 1 40%;
  min-width: 280px;
}

.contact-text h2 {
  /*font-size: clamp(2.5rem, 6vw, 4.5rem);*/
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 900;
  color: #222;
  margin: 0;
  line-height: 1.1;
}

.highlight {
  color: var(--blue-primary);
}

.highlight-ideas {
    font-size: clamp(2.5rem, 7vw, 8rem);
  color: var(--yellow-primary);
}

/* Formulario */
.contact-form-wrapper {
  flex: 1 1 55%;
  min-width: 300px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 100%;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.form-input, 
.form-textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: border 0.3s;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--blue-primary);
}

.form-input-asunto {
  flex: 1;
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-btn {
  padding: 1rem;
  background: var(--blue-primary);
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.form-btn:hover {
  background: var(--yellow-primary);
  color: #222;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .contact-text {
    order: -1; /* hace que el texto suba arriba del form */
  }

  .form-row {
    flex-direction: column;
  }

  .contacto-paragraph {
    text-align: center;
}
}


.contacto-section {
    padding: clamp(2rem, 5vw, 5rem) clamp(1rem, 3vw, 3rem);
    width: 100%;
    background: #f7f7f7;
    text-align: center;
    justify-content: center;
}
.contacto-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
    color: var(--blue-primary);
}
.contacto-paragraph {
    color: #555;
    font-size: clamp(1rem, 2vw, 1.3rem);
    line-height: 1.6;
}
.contacto-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}
.contacto-form {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 40px 35px;
    min-width: 400px;
    max-width: 800px;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contacto-form-row {
    display: flex;
    gap: 20px;
}
.contacto-form-row input {
    flex: 1;
}
.contacto-form input,
.contacto-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    font-size: 1rem;
    background: #fafafa;
    transition: all 0.3s ease;
}
.contacto-form input:focus,
.contacto-form textarea:focus {
    outline: none;
    border-color: var(--blue-primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(0, 78, 152, 0.1);
}
.contacto-form-asunto {
    margin-bottom: 0;
}
.contacto-form-btn {
    background: var(--blue-primary);
    width: clamp(100px, 20vw, 150px);
    width: 100%;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    border-radius: 8px;
    padding: 10px 30px 10px 30px !important;
    margin-top: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}
.contacto-form-btn:hover {
    background: #003366;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
#contacto-form-msg {
    margin-top: 20px;
    font-size: 1rem;
    color: var(--blue-primary);
}
@media (max-width: 900px) {
    .contacto-container {
        gap: 30px;
    }
    .contacto-form {
        min-width: unset;
        padding: 30px 25px;
        border-radius: 10px;
    }
    .contacto-form-row {
        flex-direction: column;
        gap: 15px;
    }
}
@media (max-width: 480px) {
    .contacto-form {
        padding: 25px 20px;
    }
    .contacto-form input,
    .contacto-form textarea {
        padding: 10px 12px;
    }
}
/* Footer moderno y minimalista */
footer {
      background: var(--blue-secondary);
      color: #f5f5f5;
      padding: 6rem 3rem 2rem 3rem;
    }
    .logo{
        width: clamp(180px, 20vw, 210px);
        height: auto;
    }

    .footer-container {
      max-width: 1200px;
      margin: auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 1.5rem;
    }

    .footer-logo img {
      /*width: 120px;
      height: auto;*/
    }

    /* Línea divisora */
    .footer-divider {
      margin: 1.5rem auto 0 auto;
      border-top: 1px solid #fff;
      max-width: 1200px;
      padding-top: 0.8rem;
      text-align: center;
    }

    .footer-divider p {
      font-size: 0.85rem;
      color: #aaa;
      margin: 0;
    }


    .footer-info {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }

    .footer-info p, 
    .footer-info a {
      margin: 0;
      color: #f5f5f5;
      text-decoration: none;
      font-size: 0.95rem;
    }

    .footer-info a:hover {
      color: #ff9900;
    }






.footer-modern {
    /*background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);*/
    background-color: var(--blue-primary);
    color: #ffffff;
    padding: 4rem 0 2rem 0;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 2rem;
}

.footer-main {
    text-align: center;
}

.footer-logo {
    width: 120px;
    height: auto;
    margin-bottom: 1rem;
    filter: brightness(1.1);
}

.company-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.company-tagline {
    font-size: 0.95rem;
    color: #b8c5d6;
    margin-bottom: 0;
    font-style: italic;
}

.footer-info {
    font-size: clamp(0.9rem, 2vw, 1rem);
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1rem, 2vw, 0.5rem);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    font-size: 1.5rem;
    min-width: 40px;
    text-align: center;
    margin-top: 0.2rem;
}

.contact-details {
    flex: 1;
}

.contact-label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: #64b5f6;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-details p {
    margin: 0;
    line-height: 1.4;
    color: #e0e6ed;
    font-size: 0.9rem;
}

.contact-details a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #64b5f6;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(45deg, #25d366, #20c957);
    color: white !important;
    border-radius: 25px;
    text-decoration: none !important;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: linear-gradient(45deg, #20c957, #1db854);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white !important;
}

.footer-divider {
    /*height: 1px;*/
    /*background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);*/
    margin: 2rem 0 1.5rem 0;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: #9bb0c7;
    letter-spacing: 0.3px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-modern {
        padding: 3rem 0 1.5rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-main {
        order: 1;
    }
    
    .footer-info {
        order: 2;
    }
    
    .contact-item {
        padding: 0.8rem;
    }
    
    .company-name {
        font-size: 1.3rem;
    }
    
    .footer-logo {
        width: 100px;
    }
}

@media (max-width: 480px) {
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-icon {
        margin-top: 0;
    }
}

/* Ocultar footer anterior */
.container-footer,
.footer {
    display: none;
}

/*Seccion oficinas*/
.oficinas-section {
    background: var(--yellow-primary);
    padding: clamp(2rem, 5vw, 4rem) 0;
}
.oficinas-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}
.oficinas-content {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}
.oficinas-text {
    min-width: 300px;
    padding: 3rem;
    background: var(--yellow-primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.oficinas-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.2;
    /*margin-bottom: 1.5rem;*/
    color: #222;
}
.mb-5{
    margin: 2rem 0 !important;
}
.oficinas-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    line-height: 1.5;
    color: #222;
}

.oficinas-section-nueva{
    padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 3vw, 2rem) !important;
}
.oficinas-section-nueva .oficinas-title-nueva {
    margin-bottom: 1.2rem !important;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.2;
    color: #222;
    font-weight: 900;
}
.py-5{
    padding:  0 !important;
}
.mapa-wrapper {
    flex: 1;
    min-width: 300px;
}
.mapa-iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    border-radius: 10px;
    ;
}
/* Animación para mapa */
.animate-map-fadeInUp {
    animation: fadeInRight 1.4s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 768px) {
    .oficinas-text {
        order: -1;
        padding: 2rem;
    }
    .mapa-iframe {
        min-height: 300px;
    }
}
.card {
    /*box-shadow: 0 15px 30px rgba(34, 71, 157, 0.4), 0 8px 20px rgba(34, 71, 157, 0.3) !important;*/
    border-radius: 10px !important;
    height: 100%;
    width: 100%;
}
.proyectos-cards-container .card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: clamp(350px, 40vw, 480px);
    max-height: 600px;
    height: 100%;
    border-radius: 10px !important;
}
.card-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
/*Estilos del chatbot*/
.icon {
    border-radius: 50%;
    width: 70px;
    height: 70px;
}
#chat-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
    transition: all 0.3s ease;
}
#chat-header {
    background-color: #2c3e50;
    color: white;
    padding: 15px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    display: flex;
    align-items: center;
}
#chat-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}
#chat-header h2 {
    margin: 0;
    font-size: 18px;
}
#chat-header p {
    margin: 5px 0 0;
    font-size: 12px;
    opacity: 0.8;
}
#chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background-color: #f9f9f9;
}
.message {
    margin-bottom: 15px;
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 18px;
    line-height: 1.4;
    position: relative;
    animation: fadeIn 0.3s ease;
}
.bot-message {
    background-color: #e3f2fd;
    color: #2c3e50;
    border-bottom-left-radius: 5px;
    align-self: flex-start;
}
.user-message {
    background-color: #2c3e50;
    color: white;
    border-bottom-right-radius: 5px;
    margin-left: auto;
}
.options-container {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}
.option-btn {
    background-color: white;
    color: #2c3e50;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 8px 15px;
    margin: 5px 0;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s;
}
.option-btn:hover {
    background-color: #f0f0f0;
}
#chat-input {
    display: flex;
    padding: 10px;
    background-color: white;
    border-top: 1px solid #eee;
}
#user-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
}
#send-btn {
    background-color: #2c3e50;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-left: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
#minimize-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}
.hidden {
    display: none !important;
}
#chat-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    animation: chat-shadow-pulse 1.2s infinite alternate;
}
@keyframes chat-shadow-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 221, 51, 0.7), 0 3px 10px rgba(0, 0, 0, 0.2);
    }
    100% {
        box-shadow: 0 0 25px 10px rgba(255, 221, 51, 0.9), 0 3px 10px rgba(0, 0, 0, 0.2);
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.card-img-top {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    border-radius: 10px !important;
}
.card {
    display: block;
}
.card-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
}
.card-paragraph {
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
    max-height: 8.5em;
    overflow: hidden;
    text-align: left !important;
}
/* Cards SOLO para la sección oficinas nueva */
.oficinas-section-nueva .card {
    min-height: 380px;
    max-height: 440px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
}
.oficinas-section-nueva .card-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
}
.oficinas-section-nueva .card-text {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    white-space: normal;
    word-break: break-word;
    font-size: 1rem;
}
@media (max-width: 991.98px) {
    .oficinas-section-nueva .card {
        min-height: 320px;
        max-height: 400px;
    }
    .oficinas-section-nueva .card-text {
        -webkit-line-clamp: 6;
    }
}
@media (max-width: 575.98px) {
    .oficinas-section-nueva .card {
        min-height: 220px;
        max-height: 340px;
    }
    .oficinas-section-nueva .card-text {
        -webkit-line-clamp: 8;
    }
}
html,
body {
    max-width: 100vw;
    overflow-x: hidden;
}
.view-btn{
    border: solid 1px #444 !important;
}
.icon{
            border-radius: 50%;
            width: 70px;
            height: 70px;

            cursor: pointer;
            z-index: 1000;
            transition: transform 0.3s ease;
            
            /* Sombra estática inicial */
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            
            /* Aplicamos la animación directamente al icono */
            animation: pulse-yellow 2s infinite;
        }
        
        /* Animación de pulsación amarilla */
@keyframes pulse-yellow {
    0% {
        box-shadow: 
            0 4px 10px rgba(0, 0, 0, 0.2),
            0 0 0 0 rgba(255, 204, 0, 0.4);
    }
    70% {
        box-shadow: 
            0 4px 10px rgba(0, 0, 0, 0.2),
            0 0 0 15px rgba(255, 204, 0, 0);
    }
    100% {
        box-shadow: 
            0 4px 10px rgba(0, 0, 0, 0.2),
            0 0 0 0 rgba(255, 204, 0, 0);
    }
}

/* Efecto al pasar el mouse */
.icon:hover {
    transform: scale(1.05);
}

/* Efecto al hacer clic */
.icon:active {
    transform: scale(0.95);
}


        #chat-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 350px;
            height: 500px;
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        #chat-header {
            background-color: #2c3e50;
            color: white;
            padding: 15px;
            border-top-left-radius: 15px;
            border-top-right-radius: 15px;
            display: flex;
            align-items: center;
        }
        
        #chat-header img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-right: 10px;
        }
        
        #chat-header h2 {
            margin: 0;
            font-size: 18px;
        }
        
        #chat-header p {
            margin: 5px 0 0;
            font-size: 12px;
            opacity: 0.8;
        }
        
        #chat-messages {
            flex: 1;
            padding: 15px;
            overflow-y: auto;
            background-color: #f9f9f9;
        }
        
        .message {
            margin-bottom: 15px;
            max-width: 80%;
            padding: 10px 15px;
            border-radius: 18px;
            line-height: 1.4;
            position: relative;
            animation: fadeIn 0.3s ease;
        }
        
        .bot-message {
            background-color: #e3f2fd;
            color: #2c3e50;
            border-bottom-left-radius: 5px;
            align-self: flex-start;
        }
        
        .user-message {
            background-color: #2c3e50;
            color: white;
            border-bottom-right-radius: 5px;
            margin-left: auto;
        }
        
        .options-container {
            display: flex;
            flex-direction: column;
            margin-top: 10px;
        }
        
        .option-btn {
            background-color: white;
            color: #2c3e50;
            border: 1px solid #ddd;
            border-radius: 20px;
            padding: 8px 15px;
            margin: 5px 0;
            cursor: pointer;
            text-align: left;
            transition: all 0.2s;
        }
        
        .option-btn:hover {
            background-color: #f0f0f0;
        }
        
        #chat-input {
            display: flex;
            padding: 10px;
            background-color: white;
            border-top: 1px solid #eee;
        }
        
        #user-input {
            flex: 1;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 20px;
            outline: none;
        }
        
        #send-btn {
            background-color: #2c3e50;
            color: white;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            margin-left: 10px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        #minimize-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
        }
        
        .hidden {
            display: none !important;
        }
        
        #chat-icon {
            position: fixed;
            bottom: 20px;
            right: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            cursor: pointer;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
            z-index: 999;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
/* Estilo para el botón de WhatsApp en el chat */
.whatsapp-chat-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #25D366;
    color: white !important;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(37, 211, 102, 0.3);
    margin: 10px 0;
}

.whatsapp-chat-button:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(37, 211, 102, 0.4);
}

.whatsapp-chat-button:active {
    transform: translateY(0);
}