/* Reset y base */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 3.5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #fff;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}


p,
h1,
h2,
h3 {
    font-family: "Poppins", sans-serif;
}

.header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.logo {
    width: clamp(120px, 14vw, 350px);
    height: clamp(75px, 8vw, 250px);
    aspect-ratio: 1 / 1;
    background-image: url('img/logo.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #2e7d32;
}

.btn-secondary {
    background: #7dbc3a;
    color: white;
    padding: 0.2rem 1rem;
    font-size: 0.9rem;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.secondary-nav-links a:hover {
    color: #1b5e20;
    cursor: pointer;
    transform: scale(1.1);
}

.nav {
    background-color: #f1f8e9;
    overflow: hidden;
    padding: 0;
}

.nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav li a {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    text-decoration: none;
    color: #7dbc3a;
    border-top: 1px solid #c8e6c9;
    transition: background 0.3s ease;
}

.nav li a:hover {
    background: #dcedc8;
}

.secondary-nav:first-of-type {
    padding-left: 9rem;
    /* Ajusta según necesités */
}

.secondary-nav:last-of-type {
    padding-right: 9rem;
    /* Ajusta según necesités */
}

.secondary-nav-links {
    display: flex;
    gap: 10rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.secondary-nav-links a {
    display: inline-block;
    text-decoration: none;
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    color: #7dbc3a;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    transition: transform 0.2s ease, color 0.2s ease;
}

.secondary-nav-links a:hover {
    color: #1b5e20;
    cursor: pointer;
    transform: scale(1.1);
}

.header-container-dktp {
    width: 100%;
    margin: 0 auto;
    padding: 1rem;
    justify-content: space-between;
    align-items: center;
    display: none;
    background-color: white;
}

.nav-logo img {
    height: 4rem;
}

/* Hero */
.hero {
    position: relative;
    width: 95%;
    margin: 0 auto;
    overflow: hidden;
}

.hero-img {
    margin-top: 2rem;
    width: 95%;
    height: 219px;
    display: block;
    border-radius: 16px;
    background-image: url(img/incio2.jpg);
    background-size: cover;
}

/* Overlay de texto encima de la imagen */
.hero-overlay {
    width: 100%;
    position: absolute;
    bottom: 1.5rem;
    left: 1rem;
    color: white;
    text-align: left;
    line-height: 0.3rem;
    z-index: 2;
}

.hero-overlay h1 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    color: #fff;
    font-weight: 400;
}

.hero-overlay p {
    font-size: 0.9rem;
    font-weight: bold;
    color: #fff;
    max-width: 80%;
}

/* Section Box */
.feature-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: #f4faec;
    margin-top: 1rem;
}

.feature-box-gray {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: #484848;
    color: white;
}

.feature-text {
    font-size: clamp(10px, 2vw, 1.3vw);
    text-align: justify;
    line-height: clamp(13px, 2vw, 35px);
    color: #606060;
}

.feature-text-sp {
    font-size: clamp(10px, 2vw, 1.3vw);
    text-align: justify;
    line-height: clamp(13px, 2vw, 35px);
    color: #ffffff;
}

/* Imagen cuadrada */
.image-wrapper {
    position: relative;
    width: 100%;
    min-width: 130px;
    aspect-ratio: 13 / 15;
    border-radius: 16px;
    overflow: hidden;
}

/* Imagen con borde redondo */
.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

/* CEJILLA VERTICAL — ALINEADA AL BORDE DERECHO DE LA IMAGEN */
.feature-tag {
    position: absolute;
    top: 50%;
    /* centrado verticalmente */
    right: -4px;
    transform: translateY(-50%);
    background-color: transparent;
    padding: 0;
    width: auto;
    height: auto;
    border-radius: 0;
}


.feature-tag-gray {
    position: absolute;
    top: 50%;
    /* centrado verticalmente */
    left: -4px;
    transform: translateY(-50%);
    background-color: transparent;
    padding: 0;
    width: auto;
    height: auto;
    border-radius: 0;
}

.tabs-holder {
    width: 100%;
    margin: 10px 0 10px 0;
}

.tag-image {
    height: 25vw;
    width: auto;
    display: block;
    border-radius: 10px 0 0 10px;
}

/* Carousel */
.title {
    width: 100%;
    margin: 50px auto 35px;
    color: #7dbc3a;
    font-size: 1rem;
    display: flex;
    justify-content: center;
}

section.carousel-section {
    position: relative;
    z-index: 1;
}

.wrapper {
    margin: 0 auto;
    max-width: 1200px;
    width: 85vw;
    perspective: 2000px;
    position: relative;
    display: flex;
    align-items: center;
    /* centra verticalmente */
    justify-content: center;
    /* centra horizontalmente */
    padding: 1rem;
    box-sizing: border-box;
    min-height: clamp(330px, 45vw, 600px);
}

.carousel {
    position: relative;
    height: 100%;
    transform-style: preserve-3d;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}

.carousel figure {
    position: absolute;
    width: clamp(280px, 30vw, 420px);
    height: clamp(220px, 25vw, 360px);
    transition: transform 0.6s, opacity 0.6s;
    opacity: 0.4;
    transform: scale(0.8);
}

.carousel figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.carousel figure.active {
    transform: translateX(0) scale(1) translateZ(150px);
    opacity: 1;
    z-index: 3;
}

.carousel figure.left {
    transform: translateX(-15vw) rotateY(25deg);
    z-index: 2;
}

.carousel figure.right {
    transform: translateX(15vw) rotateY(-25deg);
    z-index: 2;
}

.carousel figure.far-left,
.carousel figure.far-right {
    transform: scale(0.7);
    opacity: 0;
    z-index: 1;
    display: none;
}

.arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.arrows button {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: green;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 50%;
    transition: background 0.3s;
    pointer-events: all;
}

.arrows button:hover {
    background: rgba(255, 255, 255, 0.4);
}

.carousel-caption {
    width: 100vw;
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    /* fondo opcional para legibilidad */
    color: white;
    padding: 1rem;
    box-sizing: border-box;
}

.carousel-texts {
    width: 90%;
    margin: 0 auto;
}

.carousel-texts .car-text.active {
    opacity: 1;
    height: auto;
    pointer-events: auto;
    margin: 3vw 0 5vw 0;
}

.carousel figure h3 {
    border: solid 1px #7dbc3a;
    border-radius: 50px 50px 50px 50px / 0px 50px 0px 50px;
    font-size: 2vw;
    display: flex;
    justify-content: center;
    margin: 2vw;
    padding: 1vw;
    color: #7dbc3a;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    height: 0;
    overflow: hidden;
    margin: 0;
}

.car-text p {
    line-height: 1.4;
    display: flex;
    margin-bottom: 1vw;
    text-align: center;
    font-weight: bold;
    font-size: 0.8rem;
}

.carousel-texts .car-text {
    opacity: 0;
    transition: opacity 0.4s ease;
    height: 0;
    overflow: hidden;
    pointer-events: none;
}

.carousel figure.active h3 {
    opacity: 1;
    height: auto;
    pointer-events: auto;
    margin: 0.5rem 0 0 0;
}

.catalogo {
    display: flex;
    justify-content: center;
}

.catalogo a {
    background-image: url('img/cat.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 15rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1vw;
}

@media (max-width: 480px) {
    .carousel figure {
        width: clamp(180px, 70vw, 280px);
        height: clamp(120px, 45vw, 220px);
    }

    .wrapper {
        height: clamp(280px, 60vw, 500px);
    }

    .carousel figure.left {
        transform: translateX(-15%) rotateY(20deg);
    }

    .carousel figure.right {
        transform: translateX(15%) rotateY(-20deg);
    }

    .carousel figure.far-left,
    .carousel figure.far-right {
        display: none;
    }

    figcaption h3 {
        border: solid 1px green;
        border-radius: 50px 50px 50px 50px / 0px 50px 0px 50px;
        font-size: 0.9rem;
    }

    figcaption button {
        font-size: 0.75rem;
        padding: 4px 8px;
    }

    .carousel figure h3 {
        font-size: 3.5vw;
    }
}

.vertical,
.vertical-sp {
    display: none;
}

/* proyectos */
.partner-carousel {
    overflow: hidden;
    width: 90%;
    max-width: 1200px;
    /* opcional */
    margin: 0 auto;
    /* CENTRADO */
    padding: 2rem 0;
}

.carousel-track {
    display: flex;
    width: max-content;
    gap: 4rem;
    animation: scroll 30s linear infinite;
}

.carousel-track img {
    height: 135px;
    object-fit: contain;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* socios */
.galeria {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    flex-wrap: wrap;
    /* para que se adapte en pantallas pequeñas */
}

.contenedor {
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.contenedor img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Footer */

.footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-socials {
    position: static;
    margin-top: 1rem;
    transform: none;
    display: flex;
    gap: 0px;
    justify-content: center;
}

.footer-socials a {
    margin: 0 0.5rem;
    color: #ffffff;
}

.footer {
    background-color: #7dbc3a;
    padding: 1.2rem 0;
    position: relative;
    margin-top: 5rem;
}


.footer-logo {
    text-align: center;
}

.footer-logo img {
    max-height: 50px;
    display: block;
    margin: 0 auto 0.3rem auto;
}

.footer-logo p {
    margin: 0;
    color: #555;
    font-size: 0.9rem;
}

.footer-socials a:hover {
    transform: scale(1.2);
    color: #1d3d1f;
}

/* socials */
.icon-fb {
    background-image: url(img/socials/footer/Icono-FB.png);
    width: 30px;
    display: flex;
    height: 30px;
    background-size: cover;
}

.icon-insta {
    background-image: url(img/socials/footer/Icono-IG.png);
    width: 30px;
    display: flex;
    height: 30px;
    background-size: cover;
}

.icon-twitter {
    background-image: url(img/socials/footer/Icono-TT.png);
    width: 30px;
    display: flex;
    height: 30px;
    background-size: cover;
}

.icon-ws {
    background-image: url(img/socials/footer/Icono-WS.png);
    width: 30px;
    display: flex;
    height: 30px;
    background-size: cover;
}

/* Contacto */
.contact-title {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
}

.contact-title h3 {
    border: solid 0.2vw #7dbc3a;
    border-radius: 50px 50px 50px 50px / 50px 0px 50px 0px;
    padding: 5px 25px;
    background-color: #7dbc3a;
    color: white;
    font-size: 3vw;
}

.contacto-cliente {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    width: 90%;
    padding: 2.5rem;
    margin: 0 auto;
    border: solid 0.5vw #7dbc3a;
    border-radius: 100px 100px 100px 100px / 100px 0px 100px 0px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 4vw;
    color: #7dbc3a;
}

.redes-sociales a {
    color: #7dbc3a;
    font-size: 1rem;
    transition: color 0.3s, transform 0.3s;
}

/* Form */
.form-title {
    width: 90%;
    margin: 30px auto 0;
    display: flex;
    flex-direction: initial;
}

.form-title h3 {
    border: solid 0.2vw #7dbc3a;
    border-radius: 50px 50px 50px 50px / 0px 50px 0px 50px;
    padding: 5px 25px;
    background-color: #7dbc3a;
    color: white;
    font-size: 3vw;
}

.form-cliente {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    width: 90%;
    padding: 1rem;
    margin: 0 auto;
    background-color: #7dbc3a;
    border-radius: 100px 100px 100px 100px / 0px 100px 0px 100px;
}

.form-contacto {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    padding: 1rem;
}

.form-contacto input,
.form-contacto textarea {
    width: 100%;
    border: none;
    border-bottom: 2px solid #ffffff;
    padding: 0.5rem 0;
    font-size: 4vw;
    outline: none;
    background: transparent;
    color: #ffffff;
    transition: border-color 0.3s;
    font-family: "Poppins", sans-serif;
    font-weight: bold;
}

.form-contacto input::placeholder,
.form-contacto textarea::placeholder {
    color: #ffffff;
    /* O el color que desees */
    opacity: 1;
    /* Asegúrate de que el placeholder no sea translúcido */
}

.form-contacto input:focus,
.form-contacto textarea:focus {
    border-bottom-color: #1b5e20;
}

.form-contacto textarea {
    resize: none;
}

.form-contacto button {
    border: solid 0.2vw #ffffff;
    border-radius: 50px 50px 50px 50px / 0px 50px 0px 50px;
    padding: 10px 25px;
    background-color: #7dbc3a;
    color: white;
    transition: background-color 0.3s;
    width: 37%;
    font-size: 4vw;
    margin: 0 auto;

}

.form-contacto button:hover {
    background-color: #1d3d1f;
}



/* queries */
@media (min-width: 768px) {

    .header-container-dktp {
        display: flex;
        position: sticky;
        top: 0;
        background-color: white;
        z-index: 1000;
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .secondary-nav:first-of-type {
        padding-left: 4vw;
    }

    .secondary-nav:last-of-type {
        padding-right: 4vw;
    }

    .secondary-nav-links {
        gap: 5vw;
    }

    .header {
        display: none;
    }

    .hero-img {
        margin-top: 2rem;
        width: 90%;
        height: 600px;
        display: block;
        border-radius: 16px;
        background-image: url(img/incio2.jpg);
        background-position: 0px -175px;
    }

    .hero-overlay {
        bottom: 3.5rem;
    }

    .hero-overlay h1 {
        font-size: 4vw;
    }

    .hero-overlay p {
        font-size: 3vw;
    }

    .image-wrapper {
        position: relative;
        width: 140vw;
        aspect-ratio: 13 / 15;
        overflow: hidden;
        border-radius: 0;
    }

    .vertical {
        writing-mode: vertical-rl;
        transform: rotate(180deg);
        text-align: center;
        font-size: 1.5vw;
        color: #606060;
        display: block;
        padding-right: 50px;
    }

    .vertical-sp {
        writing-mode: vertical-rl;
        transform: rotate(0deg);
        text-align: center;
        font-size: 1.5vw;
        color: #606060;
        display: block;
        padding-right: 50px;
    }

    .feature-image {
        border-radius: 0;
    }

    .feature-text {
        padding: 40px;
        line-height: 3.5vw;
    }

    .feature-text-sp {
        color: #606060;
        padding: 40px;
        line-height: 3.5vw;
    }

    .box-inner {
        flex-direction: row;
        align-items: center;
    }

    .box-image,
    .box-text {
        flex: 1;
    }

    .box-image img {
        max-width: 90%;
        margin: 0 auto;
    }

    .box-text {
        padding-left: 1rem;
    }

    .tabs-holder {
        width: 90%;
        margin: 10px auto;
        background-color: #f4faec;
        padding: 0;
    }

    .feature-box {
        margin: 0;
        padding: 0;
    }

    .feature-box-gray {
        padding: 0;
        background-color: #f4faec;
        margin-top: 0;
    }

    .carousel figure {
        width: clamp(280px, 30vw, 480px);
        height: clamp(220px, 25vw, 360px);
    }

    .carousel figure.left {
        transform: translateX(-20vw) rotateY(35deg);
        z-index: 2;
    }

    .carousel figure.right {
        transform: translateX(20vw) rotateY(-35deg);
        z-index: 2;
    }

    .carousel figure.far-left,
    .carousel figure.far-right {
        display: none;
    }

    figcaption h3 {
        background-color: #7dbc3a;
        color: white;
        border-radius: 50px 50px 50px 50px / 0px 50px 0px 50px;
        font-size: 0.9rem;
        text-align: center;
        padding: 10px;
        width: 70%;
        margin: 10px auto;
    }

    .carousel figure h3 {
        font-size: 1.5vw;
    }

    .carousel-texts .car-text.active {
        opacity: 1;
        height: auto;
        pointer-events: auto;
        margin: 1vw 0 5vw 0;
    }

    .tag-image {
        height: 15vw;
    }

    .feature-tag,
    .feature-tag-gray {
        display: none;
    }

    .title {
        width: 85vw;
        margin: 6vw auto 4vw;
        color: #7dbc3a;
        font-size: 1rem;
        display: flex;
        justify-content: flex-start;
    }

    .carousel-texts {
        width: 70%;
        margin: 0 auto;
    }

    .car-text p {
        line-height: 1.4;
        display: flex;
        margin-bottom: 1vw;
        text-align: center;
        font-weight: bold;
        font-size: 1.2rem;
    }

    .catalogo a {
        width: 30vw;
    }

    /* contacto */
    .contact-title {
        width: 640px;
        margin: 0 auto;
        display: flex;
        flex-direction: row-reverse;
    }

    .contact-title h3 {
        border: solid 0.2vw #7dbc3a;
        border-radius: 50px 50px 50px 50px / 50px 0px 50px 0px;
        padding: 5px 25px;
        background-color: #7dbc3a;
        color: white;
        font-size: 18px;
    }

    .contacto-cliente {
        display: flex;
        flex-direction: column;
        gap: 0.3rem;
        width: 550px;
        padding: 3rem;
        margin: 0 auto;
        border: solid 0.5vw #7dbc3a;
        border-radius: 100px 100px 100px 100px / 100px 0px 100px 0px;
    }

    .info-item {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        font-size: 1.3rem;
        color: #7dbc3a;
    }

    .info-item i {
        font-size: 1.2rem;
        color: #7dbc3a;
    }

    .redes-sociales {
        display: flex;
        gap: 1rem;
        margin-top: 1rem;
    }

    .redes-sociales a {
        color: #7dbc3a;
        font-size: 1.5rem;
        transition: color 0.3s, transform 0.3s;
    }

    .redes-sociales a:hover {
        color: #7dbc3a;
        transform: scale(1.1);
    }

    /* form */
    .form-title {
        width: 640px;
        margin: 0 auto;
        display: flex;
        flex-direction: initial;
    }

    .form-contacto {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
        padding: 1rem;
    }

    .form-contacto input,
    .form-contacto textarea {
        width: 100%;
        border: none;
        border-bottom: 2px solid #ffffff;
        padding: 0.5rem 0;
        font-size: 1rem;
        outline: none;
        background: transparent;
        color: #ffffff;
        transition: border-color 0.3s;
        font-family: "Poppins", sans-serif;
        font-weight: bold;
    }

    .form-contacto input::placeholder,
    .form-contacto textarea::placeholder {
        color: #ffffff;
        /* O el color que desees */
        opacity: 1;
        /* Asegúrate de que el placeholder no sea translúcido */
    }

    .form-contacto input:focus,
    .form-contacto textarea:focus {
        border-bottom-color: #1b5e20;
    }

    .form-contacto textarea {
        resize: none;
    }

    .form-contacto button {
        border: solid 0.2vw #ffffff;
        border-radius: 50px 50px 50px 50px / 0px 50px 0px 50px;
        padding: 10px 25px;
        background-color: #7dbc3a;
        color: white;
        transition: background-color 0.3s;
        width: 37%;
        font-size: 1.2rem;
        margin: 0 auto;

    }

    .form-contacto button:hover {
        background-color: #1d3d1f;
    }

    .form-cliente {
        display: flex;
        flex-direction: column;
        gap: 0.3rem;
        width: 550px;
        padding: 3rem;
        margin: 0 auto;
        background-color: #7dbc3a;
        border-radius: 100px 100px 100px 100px / 0px 100px 0px 100px;
    }

    .form-title h3 {
        border: solid 0.2vw #7dbc3a;
        border-radius: 50px 50px 50px 50px / 0px 50px 0px 50px;
        padding: 5px 25px;
        background-color: #7dbc3a;
        color: white;
        margin-top: 3rem;
        font-size: 18px;
    }

    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer-socials {
        position: absolute;
        right: 0;
        top: 35%;
        transform: translateY(-50%);
        display: flex;
    }

    .footer-socials a {
        margin-left: 0.1rem;
        color: #fff;
        font-size: 1.2rem;
        transition: transform 0.2s ease;
    }

}

@media (min-width: 1090px) {

    .secondary-nav-links {
        gap: 10vw;
    }

    .secondary-nav:first-of-type {
        padding-left: 9vw;
    }

    .secondary-nav:last-of-type {
        padding-right: 9vw;
    }

}

/* socials */
.redes-sociales {
    display: flex;
    gap: 0.5rem;
}

.icon-fb-sp {
    background-image: url(img/socials/Icono-FB.jpg);
    width: 30px;
    display: flex;
    height: 30px;
    background-size: cover;
}

.icon-insta-sp {
    background-image: url(img/socials/Icono-IG.jpg);
    width: 30px;
    display: flex;
    height: 30px;
    background-size: cover;
}

.icon-twitter-sp {
    background-image: url(img/socials/Icono-TT.jpg);
    width: 30px;
    display: flex;
    height: 30px;
    background-size: cover;
}

.icon-ws-sp {
    background-image: url(img/socials/Icono-WS.jpg);
    width: 30px;
    display: flex;
    height: 30px;
    background-size: cover;
}



.icon-fb {
    background-image: url(img/socials/footer/Icono-FB.png);
    width: 30px;
    display: flex;
    height: 30px;
    background-size: cover;
}

.icon-insta {
    background-image: url(img/socials/footer/Icono-IG.png);
    width: 30px;
    display: flex;
    height: 30px;
    background-size: cover;
}

.icon-twitter {
    background-image: url(img/socials/footer/Icono-TT.png);
    width: 30px;
    display: flex;
    height: 30px;
    background-size: cover;
}

.icon-ws {
    background-image: url(img/socials/footer/Icono-WS.png);
    width: 30px;
    display: flex;
    height: 30px;
    background-size: cover;
}


/* Modal genérico */
#form-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#form-modal .modal-content {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    font-family: sans-serif;
}

#form-modal .modal-content button {
    margin-top: 1rem;
    padding: .5rem 1rem;
    border: none;
    background: #007bff;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
}

#form-modal .modal-content button:hover {
    background: #0056b3;
}

#form-status {
    text-align: center;
    color: white;
}