@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

:root{

    --bg-color: #fff;

    --btn-color: #fdfdfd;/* button color*/
    --btn-bg: #000;/* button bg color*/

    --primary-text-color: #000;
    --header-link-hover: #000;
    --input-hover-bd-color: #000;
}


html {
    scroll-behavior: smooth;
    font-family: "Ubuntu", sans-serif;
}

header{
    /* background-color: #fff;
    color: #000; */
    color: #4b4b4b;
    padding-left: 2%;
    padding-right: 5%;
    padding-top: 0.35rem;
    transform: translateY(-4px);
}

.site-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    height: 183px;
    min-width: 0;
    max-width: min(360px, 46vw);
    padding: 2px 0;
    flex-shrink: 0;
}

.site-logo {
    display: block;
    height: 100%;
    width: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: left center;
}

@media (max-width: 768px) {
    .site-logo-link {
        height: 134px;
        max-width: min(220px, 58vw);
    }
}

/* Hero de inicio tipo banner + franja inferior */
.home-hero {
    width: 100%;
    margin-top: 0;
}

.home-hero__image-wrap {
    width: 100%;
    height: clamp(360px, 62vw, 680px);
    overflow: hidden;
    border-bottom: 3px solid #7c3aed;
}

.home-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-hero__bar {
    background: #fff;
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 1.8rem 2rem;
    display: grid;
    grid-template-columns: 1.1fr 2fr auto;
    gap: 1.5rem;
    align-items: center;
}

.home-hero__brand {
    font-size: clamp(2.2rem, 5vw, 3rem);
    letter-spacing: 0.2em;
    font-weight: 500;
    color: #111827;
    white-space: nowrap;
}

.home-hero__copy h1 {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    line-height: 1.1;
    font-weight: 700;
    color: #111827;
    margin: 0 0 0.45rem 0;
}

.home-hero__copy p {
    margin: 0;
    color: #374151;
    font-size: 1.15rem;
    line-height: 1.35;
    max-width: 52ch;
}

.home-hero__actions {
    display: flex;
    gap: 0.85rem;
    justify-content: flex-end;
}

.home-hero__btn {
    border-radius: 0.8rem;
    padding: 0.85rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 500;
}

.home-hero__btn--primary {
    background: #000;
    color: #fff;
}

.home-hero__btn--ghost {
    background: #fff;
    color: #111827;
    border: 2px solid #111827;
}

@media (max-width: 980px) {
    .home-hero__bar {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
        padding: 1.2rem 1rem 1.4rem;
    }
    .home-hero__brand {
        letter-spacing: 0.16em;
    }
    .home-hero__copy p {
        margin: 0 auto;
        font-size: 1rem;
    }
    .home-hero__actions {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Marcas (estilo limpio y centrado) */
.brands-clean {
    padding: 5rem 1rem 2.8rem;
    text-align: center;
    background: #fff;
}

.brands-clean h2 {
    margin: 0 0 1.4rem 0;
    font-size: clamp(1.6rem, 2.8vw, 2rem);
    color: #111827;
    font-weight: 700;
}

.brands-clean__row {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem 1.4rem;
    justify-content: center;
    align-items: center;
}

.brands-clean__item {
    width: 130px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.95;
}

.brands-clean__item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.2s ease;
}

.brands-clean__item:hover img {
    filter: grayscale(0%);
}

/* Sobre nosotros + galería derecha */
.about-split {
    max-width: 1220px;
    margin: 0 auto;
    padding: 2.4rem 1.5rem 3.2rem;
    display: grid;
    grid-template-columns: minmax(300px, 430px) minmax(520px, 1fr);
    gap: 2rem;
    align-items: center;
}

.about-split__content {
    max-width: 430px;
}

.about-split__kicker {
    margin: 0 0 0.25rem 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: #6b7280;
}

.about-split__title {
    margin: 0 0 1rem 0;
    padding-bottom: 0.45rem;
    border-bottom: 1px solid #d1d5db;
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 1;
    color: #111827;
    font-weight: 700;
}

.about-split__text {
    margin: 0 0 1.1rem 0;
    color: #1f2937;
    font-size: 0.96rem;
    line-height: 1.55;
}

.about-split__note {
    margin: 0 0 1.1rem 0;
    color: #4b5563;
    font-size: 0.95rem;
}

.about-split__link {
    display: inline-block;
    color: #111827;
    font-weight: 500;
    border-bottom: 1px solid #111827;
    text-decoration: none;
    transition: opacity 0.2s;
}

.about-split__link:hover {
    opacity: 0.75;
}

.about-split__gallery {
    width: 100%;
}

.about-gallery-frame {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: #e5e7eb;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.about-gallery-frame img {
    width: 100%;
    height: clamp(260px, 32vw, 390px);
    object-fit: cover;
    object-position: center;
}

@media (max-width: 980px) {
    .about-split {
        grid-template-columns: 1fr;
        gap: 1.1rem;
        padding-top: 1.2rem;
    }
    .about-split__content {
        max-width: 100%;
    }
}

/* Imagen full width previa a equipos */
.equipos-hero {
    width: 100%;
    margin: 0;
    background: #e5e7eb;
}

.equipos-hero img {
    width: 100%;
    height: clamp(240px, 43vw, 520px);
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Bloque de equipos de control (debajo de la imagen) */
.equipos-block {
    background: #fff;
    width: 100%;
    padding: 2.25rem 1.5rem 2.75rem;
}

.equipos-block__inner {
    max-width: 1220px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
}

.equipos-block__left {
    max-width: none;
}

.equipos-block__kicker {
    margin: 0 0 0.5rem 0;
    color: #9ca3af;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.equipos-block__title {
    margin: 0;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e5e7eb;
    font-size: clamp(1.9rem, 3.8vw, 2.6rem);
    line-height: 1.05;
    font-weight: 700;
    color: #111827;
}

.equipos-block__text {
    margin: 1.1rem 0 0;
    color: #4b5563;
    font-size: 1.05rem;
    line-height: 1.45;
    font-weight: 400;
}

.equipos-block__brands {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-start;
}

.equipos-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    color: #111827;
    font-size: 0.95rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

@media (max-width: 980px) {
    .equipos-block__inner {
        gap: 1.25rem;
    }
    .equipos-block__title {
        font-size: 2rem;
    }
    .equipos-block__brands {
        justify-content: flex-start;
    }
}

/* Beneficios: estilo limpio tipo lista */
.benefits-clean {
    width: 100%;
    background: #f3f4f6;
    padding: 2.4rem 1.2rem 3.2rem;
}

.benefits-clean__inner {
    max-width: 980px;
    margin: 0 auto;
}

.benefits-clean__title {
    margin: 0 0 1rem 0;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid #cfd4dc;
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #111827;
}

.benefits-clean__list {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.benefits-clean__item {
    display: grid;
    grid-template-columns: 46px 1fr;
    align-items: center;
    gap: 0.9rem;
}

.benefits-clean__icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4b5563;
    font-size: 1.85rem;
}

.benefits-clean__item p {
    margin: 0;
    color: #1f2937;
    font-size: 1.85rem;
    line-height: 1.25;
    font-weight: 500;
}

@media (max-width: 980px) {
    .benefits-clean {
        padding: 1.8rem 1rem 2.4rem;
    }
    .benefits-clean__item p {
        font-size: 1.15rem;
    }
}

/* Bloque final: formulario sobre imagen */
.final-contact {
    position: relative;
    width: 100%;
    background: url("../valvulas2.png") center/cover no-repeat;
    padding: 2.2rem 1rem 2rem;
}

.final-contact__overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.67);
}

.final-contact__inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 1.2rem;
    align-items: start;
}

.final-contact__aside {
    padding-top: 0.8rem;
    color: #111827;
}

.final-contact__aside h3 {
    margin: 0 0 0.4rem 0;
    font-size: 1.6rem;
    line-height: 1.1;
    font-weight: 700;
}

.final-contact__aside p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.35;
    font-weight: 600;
}

.final-contact__card {
    max-width: 620px;
    width: 100%;
    background: rgba(248, 250, 252, 0.95);
    border: 1px solid #d1d5db;
    border-radius: 28px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.15);
    padding: 1.2rem 1rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.final-contact__card label {
    font-size: 0.98rem;
    font-weight: 700;
    color: #1f2937;
    margin-top: 0.15rem;
}

.final-contact__card .form-input {
    background: #f3f4f6;
    border-color: #cfd4dc;
}

.final-contact__card .form-submit-btn {
    margin-top: 0.6rem;
    background: #111827;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0.8rem 1rem;
    font-weight: 600;
    cursor: pointer;
}

/* Footer limpio estilo maqueta */
.footer-clean {
    position: relative;
    background: #ececec;
    overflow: hidden;
    padding: 2.6rem 1rem 2.8rem;
}

.footer-clean__shape {
    position: absolute;
    left: -10%;
    bottom: -220px;
    width: 130%;
    height: 320px;
    background: #36a663;
    border-top-left-radius: 50% 80%;
    border-top-right-radius: 50% 80%;
}

.footer-clean__inner {
    position: relative;
    z-index: 2;
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 800px) 1fr;
    gap: 2rem;
    align-items: center;
}

.footer-clean__brand a {
    display: inline-block;
    text-decoration: none;
    line-height: 0;
}

.footer-clean__brand img {
    width: auto;
    max-width: min(800px, 100%);
    max-height: 288px;
    height: auto;
    object-fit: contain;
    object-position: left center;
}

.footer-clean__col h4 {
    margin: 0 0 0.8rem 0;
    font-size: 1.1rem;
    font-weight: 800;
    color: #111827;
}

.footer-clean__col a,
.footer-clean__col p {
    display: block;
    margin: 0.15rem 0;
    color: #111827;
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.35;
    text-decoration: underline;
}

.footer-clean__email {
    margin-top: 1rem;
    word-break: break-all;
}

@media (max-width: 980px) {
    .final-contact__inner {
        grid-template-columns: 1fr;
    }
    .final-contact__aside {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }
    .final-contact__card {
        border-radius: 20px;
    }
    .footer-clean__inner {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .footer-clean__shape {
        bottom: -260px;
    }
}


header > .collapsible-header{
    display: flex;
    gap: 1rem;
    flex: 1;
    min-width: 0;
    background-color: inherit;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    overflow: hidden;
    transition: width 0.3s ease;
}

/* Desktop: logo | menú centrado | CTA (evita que el menú quede pegado a la derecha) */
@media (min-width: 1024px) {
    header.site-header {
        display: grid !important;
        grid-template-columns: auto minmax(0, 1fr) auto;
        align-items: center;
        column-gap: 1rem;
    }

    header.site-header > .collapsible-header {
        display: contents;
    }

    header.site-header .site-header__links {
        justify-self: center;
        display: flex;
        flex-wrap: wrap;
        gap: 0.65rem 1.15rem;
        justify-content: center;
        min-width: 0;
    }

    header.site-header .site-header__cta {
        justify-self: end;
    }
}

/* Legibilidad sobre foto del hero (solo escritorio; en menú móvil oscuro no aplica halo) */
@media (min-width: 1024px) {
    header .header-links {
        text-shadow:
            0 0 12px rgba(255, 255, 255, 0.95),
            0 1px 2px rgba(255, 255, 255, 0.9);
    }
}

.animated-collapse{
    transition: width 0.3s ease;
}


.header-links {
    display: flex;
    align-items: center;
    min-width: fit-content;
    border-radius: 5px;
    padding: 5px 10px;
    font-weight: 700;
    transition: background-color 0.5s, color 0.5s;
}


.header-links:hover {
    color: #000000;
    /* background-color: var(--header-link-hover); */
}

.primary-text-color{
    color: var(--primary-text-color);
}


/* Sobre nosotros y Equipos de control - estilos fijos para que siempre se vea el diseño */
#nosotros {
    padding: 5rem 1.5rem;
    background-color: #fff;
}
#nosotros .tw-max-w-\[560px\] {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
#nosotros .reveal-up.tw-text-xs {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #9ca3af;
    margin-bottom: 0.75rem;
}
#nosotros h2.reveal-up {
    font-size: 1.875rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: #111827;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}
#nosotros .tw-text-gray-600 {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
#nosotros .tw-text-gray-500 {
    color: #6b7280;
    font-size: 0.875rem;
}
#nosotros a[href="#formulario"] {
    display: inline-block;
    margin-top: 3rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #111827;
    border-bottom: 2px solid #111827;
    padding-bottom: 0.25rem;
    text-decoration: none;
    transition: opacity 0.2s;
}
#nosotros a[href="#formulario"]:hover {
    opacity: 0.7;
}

/* Secciones contenidas: ancho máximo y centrado para mejor lectura */
.section-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-inner {
    width: 100%;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-inner--wide {
    max-width: 720px;
}

.section-inner--narrow {
    max-width: 400px;
}

.section-inner--form {
    max-width: 900px;
    text-align: left;
}

.section-box__title {
    font-size: 1.875rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 0.75rem 0;
}

@media (max-width: 768px) {
    .section-box__title {
        font-size: 1.5rem;
    }
}

.section-box__text {
    color: #4b5563;
    margin: 0 0 1rem 0;
    line-height: 1.5;
}

.section-box__text--lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: #374151;
}

.section-box__text--small {
    font-size: 0.875rem;
    color: #6b7280;
}

.section-box__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.section-box__cta {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.section-box__cta .section-box__text {
    margin-bottom: 0;
    font-size: 1.25rem;
    font-weight: 500;
}

.btn--round {
    border-radius: 9999px;
}

.faq-list {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-height: 200px;
}

/* Formulario: cabecera y contenedor */
.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: #374151;
}

.form-header .section-box__title {
    margin-bottom: 0.5rem;
}

.form-header .section-box__text {
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.form-wrapper {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
}

@media (min-width: 1024px) {
    .form-wrapper {
        flex-direction: row;
        align-items: flex-start;
    }
    .form-wrapper .form-contacto-card {
        flex: 1;
        min-width: 0;
    }
    .form-wrapper .form-aside {
        width: 18rem;
        flex-shrink: 0;
    }
}

.signup-img-section{
    background-image: url("../assets/images/home/darkbg.png");
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover;
}

.edge-gradient{
    background: rgb(28, 28, 28);
    background: linear-gradient(83deg, #ffffff 0%, #ffffff00 20%, #ffffff00 80%, rgb(255, 255, 255) 100%);
}

/* Scroller: ítems con iconos industriales / válvulas */
.scroller-section {
    background-color: #f8fafc;
    background-image:
        url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='3' fill='none' stroke='%23cbd5e1' stroke-width='0.5' opacity='0.5'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='2' fill='%23e2e8f0' fill-opacity='0.5'/%3E%3C/svg%3E");
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.scroller-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-width: fit-content;
    height: 52px;
    padding: 0 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 0.5rem;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    flex-shrink: 0;
}

.scroller-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #475569;
    flex-shrink: 0;
}

.scroller-item__icon .bi {
    font-size: 1.15rem;
}

.scroller-item__label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1e293b;
    white-space: nowrap;
}

.scroller{
    /* width: max-content;
    flex-wrap: nowrap; */
    animation: scroll 40s forwards linear infinite;
  }
  
  .scroller[data-direction="right"] {
      animation-direction: reverse;
  }
  
  .scroller[data-direction="left"] {
      animation-direction: forwards;
  }
  
  .scroller[data-direction="left"] {
      animation-direction: forwards;
  }
  
  .scroller[data-speed="fast"]{
      animation-duration: 30s;
  }
  
  .scroller[data-speed="slow"]{
      animation-duration: 80s;
  }

.opacity-0{
    opacity: 0 !important;
}

.opacity-100{
    opacity: 100 !important;
}

.btn{
    padding: 10px 15px;
    width: max-content;
    border-radius: 5px;
    color: var(--btn-color);
    background-color: var(--btn-bg);
    justify-content: center;
    align-items: center;
    display: flex;
    cursor: pointer;
}

.btn:hover{

}

.btn:disabled{
    cursor: default;
}

.input{
    padding: 10px;
    background-color: transparent;
    border-radius: 5px;
    /* outline: none; */
    min-width: 100px;
    border: 1px solid #818080;
    /* transition: border 0.3s; */
}

.input:active, .input:focus, .input:focus-within{
    border: 1px solid var(--input-hover-bd-color) !important;
}

/* Formulario de contacto */
.form-input {
    width: 100%;
    padding: 0.625rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #111827;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.form-input::placeholder {
    color: #9ca3af;
}

.form-input:hover {
    background-color: #fff;
    border-color: #d1d5db;
}

.form-input:focus {
    outline: none;
    background-color: #fff;
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

select.form-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.25rem;
    padding-right: 2.5rem;
}

.form-submit-btn {
    cursor: pointer;
}

.form-submit-btn:hover {
    transform: translateY(-1px);
}

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

.carousel-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    max-width: 100%;
}
  
.carousel {
    display: inline-flex;
    flex-wrap: nowrap;
    animation: scroll 25s linear infinite;
}
  
.carousel-img {
    display: inline-flex;
    flex-shrink: 0;
    margin: 0 20px;
}
  
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Botón flotante WhatsApp - estilo círculo verde, logo blanco */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(0, 0, 0, 0.18);
    color: #fff;
}

.whatsapp-float__icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.footer-link{
    color: #434242;
    transition: color 0.3s;
}

.footer-link:hover{
    color: #0b0b0b;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    z-index: 10;
}

/* Position the "next button" to the right */
.next {
    right: 0px;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}



/* Style for the collapsible content such as faq commonly known as: accordion */

.faq{
    background-color: #fff;
    color: #000000;
    border: 1px solid #000;
}

.faq-accordion {
    background-color: inherit;
    color: #000000;
    cursor: pointer;
    padding: 15px 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    transition: height 0.4s;
}

.faq .content {
    padding: 0px 18px;
    color: #232323;
    height: max-content;
    overflow: hidden;
    background-color: transparent;
    text-align: justify;
    max-height: 0px;
    transition: max-height 0.4s, padding 0.4s;
}

.faq-accordion .active,
.faq-accordion:hover {
    /* background-color: #2e2c2c; */
}

@media not all and (min-width: 1024px) {
    header .collapsible-header {
        position: fixed;
        right: 0px;
        flex-direction: column;
        opacity: 0;
        height: 100vh;
        min-height: 100vh;
        height: 100dvh;
        width: 0vw;
        justify-content: space-between;
        padding: 5px;
        padding-top: 5%;
        padding-bottom: 5%;
        place-items: end;
        background-color: #040404;
        color: #ffffff;
        overflow-y: auto;
        box-shadow: 3px 0px 3px 2px #9f9f9f;
    }

    .header-links{
        color: rgb(255, 255, 255);
    }
    
}