* {
    box-sizing: border-box;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none !important;
    cursor: pointer;
}


/* ESTILOS PARA TRADUCIR */
.translate {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    right: 0;
    padding: 5px;
    width: 5%;
    gap: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 15px;
    z-index: 999;
}

.translate a img {
    width: 100%;
}

body {
    top: 0 !important;
}



/* ESTILOS PARA EL BOTON DE WSSP */
#whatsapp-btn {
    position: fixed;
    bottom: 50%;
    right: 0;
    background-color: #25D366;
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 99;
}

#chat-box {
    position: fixed;
    bottom: 50%;
    right: 70px;
    width: 300px;
    background-color: #f0f0f0;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    font-family: Arial, sans-serif;
    z-index: 998;
}

#chat-header {
    background-color: #25D366;
    color: white;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

#chat-body {
    padding: 10px;
    background: #e0e0e0;
    height: 100px;
}

#chat-body textarea {
    width: 100%;
    height: 60px;
    border: none;
    resize: none;
    padding: 8px;
    border-radius: 5px;
}

#chat-footer {
    padding: 10px;
    text-align: right;
}

#chat-footer button {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
}

#chat-footer button:hover {
    background-color: #1ebd58;
}


/* BOTON PARA SUBIR */
#btnSubir {
    position: fixed;
    right: 0;
    bottom: 30px;
    z-index: 999999 !important;
    font-size: 20px;
    width: 60px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    height: 60px;
    background-color: #308337;
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    display: none;
    box-shadow: 0 4px 8px #0000004d;
    transition: opacity 0.3s ease, ease-in-out .3s, ;
}

#btnSubir:hover {
    background-color: #18b425;
}


/* AUMENTAMOS EL MAXIMO DEL CONTAINER */
.container {
    max-width: 1600px !important;
    overflow: hidden;
}


/* ESTILOS PARA EL MENU MOVIL */
.movil-menu {
    background-color: #ffffff;
    position: relative;
    display: none;
    z-index: 9999;
}

.menu-toggle {
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-toggle {
    color: #308337;
}

.menu-toggle img {
    width: 60%;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100%;
    background-color: #ffffff;
    color: #308337;
    transition: right 0.4s ease;
    z-index: 1000;
    padding-top: 2rem;
    border-left: 2px solid #308337;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 2rem 1rem;
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.mobile-menu a {
    color: #ffffff;
    background-color: #308337;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    font-family: "Poppins";
    border-radius: 5px;
    padding: 7px 20px;
    transition: ease-in-out .3s;
}

.mobile-menu .sign,
.mobile-menu .register {
    border: 1px solid #308337;
    color: #308337;
    background-color: #ffffff;
}

.mobile-menu a:hover {
    background-color: #308337;
    color: #ffffff;
}

.mobile-menu.show {
    right: 0;
}

.close-btn {
    font-size: 2rem;
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
}




.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    top: 36px;
    width: 200px;
    border-radius: 5px;
    flex-direction: column;
}

.dropdown-content a {
    color: black;
    font-size: 0.9em !important;
    padding: 10px 16px;
    border-radius: 0 !important;
    text-decoration: none;
    display: block;
    cursor: pointer !important;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}


.dropdown-content-service {
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    top: 36px;
    width: 400px;
    flex-direction: column;
}

.dropdown-content-service a {
    color: black;
    font-size: 0.9em !important;
    padding: 10px 16px;
    text-decoration: none;
    border-radius: 0 !important;
    display: block;
    cursor: pointer !important;
}

.dropdown-content-service a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content-service {
    display: block;
}



.dropdown-content-register {
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    left: -100%;
    top: 36px;
    width: 220px;
    border-radius: 5px;
    flex-direction: column;
}

.dropdown-content-register a {
    color: #101010;
    font-size: 0.9em !important;
    padding: 10px 16px;
    text-decoration: none;
    border-radius: 0 !important;
    display: block;
    cursor: pointer !important;
}

.dropdown-content-register span {
    font-size: 0.9em !important;
    font-family: "Outfit";
    color: #101010;
}

.dropdown-content-register a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content-register {
    display: block;
}






header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 99;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    background-color: transparent;
}

.header-container {
    width: 80%;
    display: flex;
    background-color: #ffffff;
    align-items: center;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    padding: 5px 20px;
    justify-content: space-between;
    transition: width 0.4s ease-in-out, margin-top 0.4s ease-in-out, padding 0.4s;
}

.header-container.scrolled {
    width: 100% !important;
    border-radius: 0;
    padding: 10px 180px;
    top: 0;
    border-bottom: 1px solid #308337;
    margin-top: 0;
}

.header-logo {
    width: 17%;
}

.header-logo .logo {
    width: 100%;
    position: relative;
    z-index: 10;
}

.header-nav .navbar {
    display: flex;
    gap: 20px;
    flex-direction: row;
    flex-wrap: nowrap;
}

.header-nav .navbar a {
    font-size: 0.9em;
    font-family: "Outfit";
    color: #101010;
    text-transform: capitalize;
    padding: 7px 20px;
    border-radius: 5px;
    font-weight: 400;
    position: relative;
    transition: ease-in-out .3s, font-size .2s ease;
}

.header-nav .navbar a:hover {
    background-color: #308337;
    color: #ffffff;
    padding: 7px 20px;
    border-radius: 5px;
}

.header-nav .navbar a.active {
    background-color: #308337;
    color: #ffffff;
    padding: 7px 20px;
    border-radius: 5px;
    transition: ease-in-out .3s;
}

.header-nav .navbar .sign {
    background-color: #ffffff;
    color: #308337;
    border: 1px solid #308337;
    padding: 7px 20px;
    border-radius: 5px;
    transition: ease-in-out .3s;
}

.header-nav .navbar .user {
    background-color: #ffffff;
    color: #308337;
    border: 1px solid #308337;
    padding: 7px 20px;
    border-radius: 5px;
    transition: ease-in-out .3s;
}

.header-nav .navbar .sign:hover {
    background-color: #ffffff;
    color: #308337;
    border: 1px solid #308337;
    background-color: #308337;
    padding: 7px 20px;
    color: #ffffff;
    border-radius: 5px;
    transition: ease-in-out .3s;
}

.header-nav .navbar .register {
    border: 1px solid #308337;
    padding: 7px 20px;
    transition: ease-in-out .3s;
    border-radius: 5px;
}

.header-nav .navbar .register:hover {
    border: 1px solid #308337;
    padding: 7px 20px !important;
    transition: ease-in-out .3s;
    border-radius: 5px;
}



.hero {
    width: 100%;
    height: 100vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 2;
}

.hero-container {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100vh;
    justify-content: center;
}

.video-back {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    width: 100%;
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center !important;
    justify-content: space-between;
}

.hero-back {
    position: absolute;
    width: 600px;
    height: 500px;
    z-index: -1;
    border-radius: 5px;
    background: transparent;
    backdrop-filter: blur(10px);
}

.hero-title {
    display: flex;
    align-items: center;
    justify-content: center !important;
    flex-direction: column;
    gap: 30px;
    width: 35%;
    margin-top: 200px !important;
    border-radius: 10px;
    padding: 100px 50px;
}

.hero-title h1 {
    color: #101010;
    font-family: "Montserrat";
    font-style: italic;
    font-size: 4em;
    text-transform: uppercase;
    font-weight: 800;
    text-align: center;
    position: relative;
}

.hero-title h1 span {
    color: #308337;
}

.hero-title h2 {
    color: #ffffff;
    font-family: "Source Sans 3", sans-serif;
    font-style: italic;
    font-size: 1.8em;
    font-weight: 600;
    text-align: center;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.hero-buttons a {
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    transition: ease-in-out .3s;
    padding: 6px 20px;
    font-size: 1em;
    border-radius: 10px;
    border: 3px solid #308337;
    font-family: "Montserrat";
    letter-spacing: 1px;
    background-color: #308337;
}

.hero-buttons a:hover {
    background: none;
    border: 3px solid #308337;
    color: #ffffff;
}

.folow-us {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.folow-us h4 {
    color: #ffffff;
    text-transform: uppercase;
    font-family: "Montserrat";
    font-weight: 700;
    position: relative;
    margin-bottom: 0;
}

.folow-sotial a {
    background-color: #308337;
    color: #ffffff;
    border: 1px solid #308337;
    border-radius: 100%;
    vertical-align: middle;
    padding: 10px 13px;
    transition: ease-in-out .3s;
}

.folow-sotial a i {
    text-align: center;
}

.folow-us a:hover {
    background: none;
    color: #ffffff;
    border: 1px solid #308337;
}



main {
    background-color: #ffffff !important;
    position: relative;
    z-index: 2;
}



.about {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
    z-index: 2;
}

.about-container {
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    justify-content: center;
    border-radius: 20px;
    flex-direction: column;
}

.about-content {
    display: flex;
    background-color: #101010d7;
    align-items: center;
    padding: 30px 30px;
    border-radius: 20px;
    justify-content: center;
}

.about-img {
    display: flex;
    align-items: end;
    justify-content: end;
}

.about-img img {
    width: 80%;
    border-radius: 20px;
}

.about-desc {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sobre-nosotros {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-desc h2 {
    text-transform: uppercase;
    font-family: "Montserrat";
    color: #ffffff;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    font-size: 4.5em;
    z-index: 2;
}

.about-desc h2::after {
    content: "";
    width: 10%;
    position: absolute;
    height: 2px;
    top: 50%;
    z-index: -1;
    right: -40px;
    background-color: #308337;
}

.about-desc p {
    text-align: left;
    font-family: "Outfit";
    font-size: 1.2em;
    color: #ffffff;
}

.desc-button a {
    background-color: #308337;
    color: #ffffff;
    font-family: "Outfit";
    padding: 10px 20px;
    font-weight: 400;
    font-size: 1.4em;
    transition: ease-in-out .3s;
    border-radius: 10px;
}

.desc-button a:hover {
    background-color: #ffffff;
    color: #308337;
}




.services {
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 2;
    background-repeat: no-repeat;
}

.service {
    padding: 100px 0;
    background-color: #000000d7;
}

.services-container {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
}

.services-container h2 {
    color: #308337;
    font-family: "Montserrat";
    text-transform: uppercase;
    font-weight: 800;
    font-size: 4.5em;
    position: relative;
}

.services-container h2::before {
    content: "";
    position: absolute;
    background-color: #308337;
    width: 100px;
    height: 3px;
    left: -130px;
    top: 50%;
}

.service-content {
    width: 100%;
}

.service-card {
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.service-desc {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #308337d2;
    width: 100%;
    height: 400px;
    opacity: 0;
    padding: 0 30px;
    transition: ease-in-out .4s;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.service-desc:hover {
    opacity: 1;
}

.service-desc ul li {
    color: #ffffff;
    font-family: "Poppins";
    text-transform: uppercase;
    font-size: 1.3em;
}

.service-desc p {
    color: #ffffff;
    font-family: "Poppins";
    text-transform: uppercase;
    font-size: 1.3em;
}

.service-card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
    background-color: #ffffff;
}

.service-card-content h4 {
    color: #308337;
    font-family: "Montserrat";
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.3em;
}

.service-card-content a {
    font-family: "Lexend";
    font-size: 1.3em;
    padding: 5px 20px;
    background-color: #308337;
    border: 2px solid #ffffff;
    color: #ffffff;
    transition: ease-in-out .3s;
}

.service-card-content a:hover {
    font-family: "Lexend";
    font-size: 1.3em;
    padding: 5px 20px;
    background-color: #ffffff;
    border: 2px solid #308337;
    color: #308337;
    transition: ease-in-out .3s;
}




.works {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
    z-index: 2;
}

.works-container h2 {
    text-align: center;
    color: #308337;
    font-family: "Montserrat";
    text-transform: uppercase;
    font-weight: 800;
    font-size: 4.5em;
    position: relative;
}

.works-container h2::before {
    content: "";
    position: absolute;
    background-color: #308337;
    width: 100px;
    height: 3px;
    left: 26%;
    top: 50%;
}

.works-container h2::after {
    content: "";
    position: absolute;
    background-color: #308337;
    width: 100px;
    height: 3px;
    right: 26%;
    top: 50%;
}

.work-content-card {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
}

.works-card {
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 300px;
    border-radius: 10px;
}

.card-content {
    width: 100%;
    background-color: #000000b6;
    display: flex;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    transition: ease-in-out .3s;
    opacity: 0;
    height: 300px;
}

.card-content:hover {
    opacity: 1;
}

.card-content a {
    font-size: 2em;
    text-transform: uppercase;
    font-family: "Montserrat";
    font-weight: 800;
    color: #ffffff;
    transition: ease-in-out .3s;
}

.card-content a:hover {
    color: #ffffff;
}



[data-barba="container"] {
    transition: opacity 0.5s ease;
}



.contact {
    position: relative;
    z-index: 2;
    padding: 100px 0;
}

.contact-container h2 {
    text-align: center;
    color: #308337;
    font-family: "Montserrat";
    text-transform: uppercase;
    font-weight: 800;
    font-size: 3em;
    position: relative;
}

.contact-container h2::before {
    content: "";
    position: absolute;
    background-color: #308337;
    width: 100px;
    height: 3px;
    left: 25%;
    top: 50%;
}

.contact-container h2::after {
    content: "";
    position: absolute;
    background-color: #308337;
    width: 100px;
    height: 3px;
    right: 25%;
    top: 50%;
}

.contact-content {
    display: flex;
    gap: 50px;
    justify-content: space-between;
}

.contact-form {
    display: flex;
    border-radius: 20px;
    flex-direction: column;
    padding: 50px;
    background-color: #308337;
}

.contact-form h3 {
    font-family: "Lexend";
    font-size: 2em;
    text-transform: uppercase;
    font-weight: 800;
    color: white;
}

.contact-form p {
    font-family: "Lexend";
    font-size: 1.1em;
    font-weight: 300;
    color: white;
}

.contact-sotial {
    display: flex;
    gap: 20px;
}

.contact-sotial a {
    color: #ffffff;
    font-size: 1.4em;
    border: 3px solid #ffffff;
    border-radius: 500px;
    width: 40px;
    height: 40px;
    transition: ease-in-out .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-us {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.input {
    display: flex;
    width: 100%;
    gap: 10px;
}

.input input {
    background-color: #ffffff;
    border: none;
    outline: none;
    width: 100%;
    font-family: "Lexend";
    color: #308337;
    padding: 10px 20px;
    border-radius: 20px;
}

input::placeholder {
    color: #308337;
}

textarea::placeholder {
    font-family: "Lexend";
    color: #308337;
}

textarea {
    background-color: #ffffff;
    border: none;
    outline: none;
    width: 100%;
    font-family: "Lexend";
    color: #308337;
    padding: 10px 20px;
    border-radius: 20px;
}

.button-form {
    outline: none;
    border: none;
    border-radius: 20px;
    font-family: "Lexend";
    text-transform: uppercase;
    font-weight: 700;
    color: #308337;
    font-size: 1.3em;
    padding: 8px;
}



footer {
    font-family: "Lexend";
    padding: 50px;
    border-top: 3px solid #308337;
    background-color: #ffffff;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: flex;
}

.footer-img {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-img img {
    width: 100%;
}

.footer-column {
    width: 100%;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
}

.column {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 3px;
}

.column h4 {
    text-transform: uppercase;
    font-weight: 800;
    color: #308337;
}

.column a {
    display: flex;
    align-items: center;
    justify-content: start;
    font-weight: 500;
    color: #000000ad;
    transition: ease-in-out .2s;
}

.column a:hover {
    color: #308337;
}

.column i {
    color: #308337;
    font-size: 1.7em;
}

.footer-maps iframe {
    width: 100%;
    height: auto;
    border-radius: 10px;
}


.background {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    position: fixed;
    top: 0;
    height: 100vh;
}



.comentarios {
    position: relative;
    padding: 100px 0;
    z-index: 1;
    font-family: "Lexend";
    background-color: #000000d7;
}

.comentarios-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.comentarios-container h2 {
    text-align: center;
    color: #308337;
    font-family: "Montserrat" !important;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 3em;
    position: relative;
}

.comentarios-content p {
    color: #ffffff;
}

.comentarios-form {
    background-color: #308337;
    padding: 50px;
    border-radius: 10px;
}

.comentarios-form textarea {
    border-radius: 0;
}

.form-comentario input[type="text"],
.form-comentario textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background-color: #f9f9f9;
}

.form-comentario input[type="text"]:focus,
.form-comentario textarea:focus {
    outline: none;
    background-color: #fff;
}

.form-comentario textarea {
    min-height: 120px;
    resize: vertical;
}

.form-comentario button {
    width: 100%;
    padding: 14px;
    color: #308337;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

@media (min-width: 970px) and (max-width: 1199px) {
    .movil-menu {
        display: block;
    }

    .menu-toggle img {
        width: 20%;
    }

    header {
        display: none;
    }



    .hero {
        height: 70vh;
    }

    .hero-container {
        height: 70vh;
    }

    .hero-back {
        width: 100%;
        height: 450px;
    }

    .hero-title {
        width: 100%;
        margin-top: 0 !important;
        border-radius: 0;
        padding: 100px 30px;
    }

    .video-back {
        height: 70vh !important;
        width: 100%;
    }

    .hero-title br {
        display: none;
    }

    .hero-title h1 {
        font-size: 12vh;
        text-align: center;
    }

    .hero-title h2 {
        font-size: 1.8em;
        text-align: center;
    }

    .hero-content {
        flex-direction: column;
    }

    .folow-sotial a {
        font-size: 0.8em !important;
    }

    .folow-us h4::before {
        content: none;
    }

    .folow-us h4::after {
        display: none;
    }

    .hero-buttons {
        gap: 10px;
    }

    .folow-us {
        width: 100%;
    }

    .hero-buttons a {
        font-size: 18px;
        width: 100%;
        text-align: center;
    }


    .desc-button a {
        font-size: 2.2vw;
    }

    .about-desc h2 {
        font-size: 3em;
        text-align: center;
    }

    .about-desc h2::after {
        display: none;
    }

    .about-content {
        gap: 30px;
    }

    .about-desc p {
        font-size: 1em;
        text-align: justify;
    }

    .about-img img {
        width: 100%;
    }


    .services-container {
        align-items: center;
    }

    .services-container h2 {
        font-size: 3.5em !important;
        text-align: center;
    }

    .services-container h2::before {
        display: none;
    }

    .service-card-content h4 {
        width: 60%;
    }

    .service-card-content a {
        width: 40%;
        font-size: 1.4em;
    }

    .service-card-content h4 {
        font-size: 1.1em;
    }


    .works-container h2 {
        font-size: 3.5em;
    }

    .works-container h2::before {
        display: none;
    }

    .works-container h2::after {
        display: none;
    }

    .work-content-card {
        gap: 20px;
    }

    .works-card {
        height: 450px;
    }

    .card-content {
        height: 450px;
    }


    .comentarios-container h2 {
        font-size: 3.5em;
    }

    .comentarios-container {
        text-align: center;
    }

    .comentarios-content p {
        padding: 0 30px;
    }

    .comentarios-form {
        padding: 20px;
    }


    footer {
        padding: 50px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-img {
        border-right: none !important;
    }

    .footer-img img {
        width: 50%;
    }

    .footer-column {
        padding: 0;
        gap: 25px;
        border-right: none !important;
    }

    .footer-column br {
        display: none !important;
    }


    .translate {
        top: 13%;
        width: 10%;
        right: 0;
        flex-direction: column;
    }

    .translate a {
        text-align: right;
    }

    .translate a img {
        width: 60%;
    }


    #btnSubir {
        font-size: 25px;
        width: 50px;
        height: 50px;
        padding: 0;
        right: 0;
    }


    #whatsapp-btn {
        bottom: 25%;
        width: 50px;
        font-size: 30px;
        height: 50px;
    }

    #chat-box {
        right: 55px;
        bottom: 30%;
    }
}

@media (min-width: 769px) and (max-width: 970px) {
    .movil-menu {
        display: block;
    }

    .menu-toggle img {
        width: 30%;
    }

    header {
        display: none;
    }



    .hero {
        height: 70vh;
    }

    .hero-container {
        height: 70vh;
    }

    .hero-back {
        width: 100%;
        height: 450px;
    }

    .hero-title {
        width: 100%;
        margin-top: 0 !important;
        border-radius: 0;
        padding: 100px 30px;
    }

    .video-back {
        height: 70vh !important;
        width: 100%;
    }

    .hero-title br {
        display: none;
    }

    .hero-title h1 {
        font-size: 12vh;
        text-align: center;
    }

    .hero-title h2 {
        font-size: 1.8em;
        text-align: center;
    }

    .hero-content {
        flex-direction: column;
    }

    .folow-sotial a {
        font-size: 0.8em !important;
    }

    .folow-us h4::before {
        content: none;
    }

    .folow-us h4::after {
        display: none;
    }

    .hero-buttons {
        gap: 10px;
    }

    .folow-us {
        width: 100%;
    }

    .hero-buttons a {
        font-size: 18px;
        width: 100%;
        text-align: center;
    }


    .desc-button a {
        font-size: 2.2vw;
    }

    .about-desc h2 {
        font-size: 3.5em;
        text-align: center;
    }

    .about-desc h2::after {
        display: none;
    }

    .about-content {
        flex-direction: column;
        gap: 30px;
    }

    .about-desc p {
        font-size: 1em;
        text-align: left;
    }

    .about-img img {
        width: 100%;
    }


    .services-container {
        align-items: center;
    }

    .services-container h2 {
        font-size: 3.5em !important;
        text-align: center;
    }

    .services-container h2::before {
        display: none;
    }

    .service-card-content h4 {
        width: 60%;
    }

    .service-card-content a {
        width: 40%;
        font-size: 1.4em;
    }

    .service-card-content h4 {
        font-size: 1.1em;
    }


    .works-container h2 {
        font-size: 3.5em;
    }

    .works-container h2::before {
        display: none;
    }

    .works-container h2::after {
        display: none;
    }

    .work-content-card {
        flex-direction: column;
        gap: 20px;
    }

    .works-card {
        height: 500px;
    }

    .card-content {
        height: 500px;
    }


    .comentarios-container h2 {
        font-size: 3.5em;
    }

    .comentarios-container {
        flex-direction: column;
        text-align: center;
    }

    .comentarios-form {
        padding: 20px;
    }


    footer {
        padding: 50px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-img {
        border-right: none !important;
    }

    .footer-img img {
        width: 50%;
    }

    .footer-column {
        padding: 0;
        gap: 25px;
        border-right: none !important;
    }

    .footer-column br {
        display: none !important;
    }


    .translate {
        top: 13%;
        width: 10%;
        right: 0;
        flex-direction: column;
    }

    .translate a {
        text-align: right;
    }

    .translate a img {
        width: 60%;
    }


    #btnSubir {
        font-size: 25px;
        width: 50px;
        height: 50px;
        padding: 0;
        right: 0;
    }


    #whatsapp-btn {
        bottom: 25%;
        width: 50px;
        font-size: 30px;
        height: 50px;
    }

    #chat-box {
        right: 55px;
        bottom: 30%;
    }


    .especialidad {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .especialidad-img .especialidad-height {
        height: auto !important;
    }

    .especialidad-img::before {
        content: none !important;
    }

    .especialidad-img::after {
        content: none !important;
    }

    .especialidad-img {
        background-color: #308337;
        padding: 10px;
        border-radius: 5px;
    }

    .especialidad-desc h3::after {
        content: none !important;
    }

    .especialidad-desc h3 {
        text-align: center;
        font-size: 6vw !important;
    }
}

@media (min-width: 568px) and (max-width: 768px) {
    .movil-menu {
        display: block;
    }

    .menu-toggle img {
        width: 30%;
    }

    header {
        display: none;
    }



    .hero {
        height: 70vh;
    }

    .hero-container {
        height: 70vh;
    }

    .hero-back {
        width: 100%;
        height: 450px;
    }

    .hero-title {
        width: 100%;
        margin-top: 0 !important;
        border-radius: 0;
        padding: 100px 30px;
    }

    .video-back {
        height: 70vh !important;
        width: 100%;
    }

    .hero-title br {
        display: none;
    }

    .hero-title h1 {
        font-size: 9vh;
        text-align: center;
    }

    .hero-title h2 {
        font-size: 1.8em;
        text-align: center;
    }

    .hero-content {
        flex-direction: column;
    }

    .folow-sotial a {
        font-size: 0.8em !important;
    }

    .folow-us h4::before {
        content: none;
    }

    .folow-us h4::after {
        display: none;
    }

    .hero-buttons {
        gap: 10px;
    }

    .folow-us {
        width: 100%;
    }

    .hero-buttons a {
        font-size: 18px;
        width: 100%;
        text-align: center;
    }


    .desc-button a {
        font-size: 3.6vw;
    }

    .about-desc h2 {
        font-size: 3.5em;
        text-align: center;
    }

    .about-desc h2::after {
        display: none;
    }

    .about-content {
        flex-direction: column;
        gap: 30px;
    }

    .about-desc p {
        font-size: 1em;
        text-align: left;
    }

    .about-img img {
        width: 100%;
    }


    .services-container {
        align-items: center;
    }

    .services-container h2 {
        font-size: 3.5em !important;
        text-align: center;
    }

    .services-container h2::before {
        display: none;
    }

    .service-card-content h4 {
        width: 60%;
    }

    .service-card-content a {
        width: 40%;
        font-size: 1.4em;
    }

    .service-card-content h4 {
        font-size: 1.1em;
    }


    .works-container h2 {
        font-size: 3.5em;
    }

    .works-container h2::before {
        display: none;
    }

    .works-container h2::after {
        display: none;
    }

    .work-content-card {
        flex-direction: column;
        gap: 20px;
    }


    .comentarios-container h2 {
        font-size: 3.5em;
    }

    .comentarios-container {
        flex-direction: column;
        text-align: center;
    }

    .comentarios-form {
        padding: 20px;
    }


    footer {
        padding: 50px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-img {
        border-right: none !important;
    }

    .footer-column {
        padding: 0;
        gap: 25px;
        border-right: none !important;
    }

    .footer-column br {
        display: none !important;
    }


    .translate {
        top: 13%;
        width: 10%;
        flex-direction: column;
    }

    .translate {
        top: 13%;
        width: 10%;
        right: 0;
        flex-direction: column;
    }

    .translate a {
        text-align: right;
    }

    .translate a img {
        width: 60%;
    }


    #btnSubir {
        font-size: 25px;
        width: 50px;
        height: 50px;
        padding: 0;
        right: 0;
    }


    #whatsapp-btn {
        bottom: 25%;
        width: 50px;
        font-size: 30px;
        height: 50px;
    }

    #chat-box {
        right: 55px;
        bottom: 30%;
    }


    .especialidad {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .especialidad-img .especialidad-height {
        height: auto !important;
    }

    .especialidad-img::before {
        content: none !important;
    }

    .especialidad-img::after {
        content: none !important;
    }

    .especialidad-img {
        background-color: #308337;
        padding: 10px;
        border-radius: 5px;
    }

    .especialidad-desc h3::after {
        content: none !important;
    }

    .especialidad-desc h3 {
        text-align: center;
        font-size: 6vw !important;
    }
}

@media (min-width: 400px) and (max-width: 567px) {
    .movil-menu {
        display: block;
    }

    header {
        display: none;
    }



    .hero {
        height: 70vh;
    }

    .hero-container {
        height: 70vh;
    }

    .hero-back {
        width: 100%;
        height: 450px;
    }

    .hero-title {
        width: 100%;
        margin-top: 0 !important;
        border-radius: 0;
        padding: 100px 30px;
    }

    .video-back {
        height: 70vh !important;
        width: 100%;
    }

    .hero-title br {
        display: none;
    }

    .hero-title h1 {
        font-size: 6vh;
        text-align: center;
    }

    .hero-title h2 {
        font-size: 1.9em;
        text-align: center;
    }

    .hero-content {
        flex-direction: column;
    }

    .folow-sotial a {
        font-size: 0.8em !important;
    }

    .folow-us h4::before {
        content: none;
    }

    .img {
        flex-direction: column;
        width: 100%;
    }

    .folow-us h4::after {
        display: none;
    }

    .hero-buttons {
        gap: 10px;
        width: 100%;
    }

    .folow-us {
        width: 100%;
    }

    .hero-buttons a {
        font-size: 15px;
        width: 100%;
        text-align: center;
    }


    .desc-button a {
        font-size: 3.6vw;
    }

    .about-desc h2 {
        font-size: 2.7em;
        text-align: center;
    }

    .about-desc h2::after {
        display: none;
    }

    .about-content {
        flex-direction: column;
        gap: 30px;
    }

    .about-desc p {
        font-size: 1em;
        text-align: left;
    }

    .about-img img {
        width: 100%;
    }


    .services-container {
        align-items: center;
    }

    .services-container h2 {
        font-size: 3em !important;
        text-align: center;
    }

    .services-container h2::before {
        display: none;
    }

    .service-card-content h4 {
        width: 60%;
    }

    .service-card-content a {
        width: 40%;
        font-size: 1.4em;
    }

    .service-card-content h4 {
        font-size: 1.1em;
    }


    .works-container h2 {
        font-size: 2.8em;
    }

    .works-container h2::before {
        display: none;
    }

    .works-container h2::after {
        display: none;
    }

    .work-content-card {
        flex-direction: column;
        gap: 20px;
    }


    .comentarios-container h2 {
        font-size: 2.8em;
    }

    .comentarios-container {
        flex-direction: column;
        text-align: center;
    }

    .comentarios-form {
        padding: 20px;
    }


    footer {
        padding: 50px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-img {
        border-right: none !important;
    }

    .footer-column {
        padding: 0;
        gap: 25px;
        border-right: none !important;
    }

    .footer-column br {
        display: none !important;
    }


    .translate {
        top: 13%;
        width: 10%;
        flex-direction: column;
    }


    #btnSubir {
        font-size: 25px;
        width: 50px;
        height: 50px;
        padding: 0;
        right: 0;
    }


    #whatsapp-btn {
        bottom: 25%;
        width: 50px;
        font-size: 30px;
        height: 50px;
    }

    #chat-box {
        right: 55px;
        bottom: 30%;
    }

    .especialidad {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .especialidad-img .especialidad-height {
        height: auto !important;
    }

    .especialidad-img::before {
        content: none !important;
    }

    .especialidad-img::after {
        content: none !important;
    }

    .especialidad-img {
        background-color: #308337;
        padding: 10px;
        border-radius: 5px;
    }

    .especialidad-desc h3::after {
        content: none !important;
    }

    .especialidad-desc h3 {
        text-align: center;
        font-size: 6vw !important;
    }
}

@media(max-width: 399px) {
    .movil-menu {
        display: block;
    }


    header {
        display: none;
    }



    .hero {
        height: 70vh;
    }

    .hero-container {
        height: 70vh;
    }

    .hero-back {
        width: 100%;
        height: 350px;
    }

    .hero-title {
        width: 100%;
        margin-top: 0 !important;
        border-radius: 0;
        padding: 100px 30px;
    }

    .video-back {
        height: 70vh !important;
        width: 100%;
    }

    .hero-title br {
        display: none;
    }

    .hero-title h1 {
        font-size: 1.6em;
        text-align: center;
    }

    .hero-title h2 {
        font-size: 1.3em;
        text-align: center;
    }

    .hero-content {
        flex-direction: column;
    }

    .folow-sotial a {
        font-size: 0.8em !important;
    }

    .folow-us h4::before {
        content: none;
    }

    .img {
        flex-direction: column;
        width: 100%;
    }

    .folow-us h4::after {
        display: none;
    }

    .hero-buttons {
        gap: 10px;
        width: 100%;
    }

    .folow-us {
        width: 100%;
    }

    .hero-buttons a {
        font-size: 11px;
        width: 100%;
    }



    .desc-button a {
        font-size: 3.6vw;
    }

    .about-desc h2 {
        font-size: 2.1em;
        text-align: center;
    }

    .about-desc h2::after {
        display: none;
    }

    .about-content {
        flex-direction: column;
        gap: 30px;
    }

    .about-desc p {
        font-size: 1em;
        text-align: left;
    }

    .about-img img {
        width: 100%;
    }



    .services-container {
        align-items: center;
    }

    .services-container h2 {
        font-size: 2.5em;
        text-align: center;
    }

    .services-container h2::before {
        display: none;
    }

    .service-card-content h4 {
        width: 60%;
    }

    .service-card-content a {
        width: 40%;
        font-size: 1em;
    }

    .service-card-content h4 {
        font-size: 1em;
    }


    .works-container h2 {
        font-size: 2.5em;
    }

    .works-container h2::before {
        display: none;
    }

    .works-container h2::after {
        display: none;
    }

    .work-content-card {
        flex-direction: column;
        gap: 20px;
    }




    .contact-container h2 {
        font-size: 2.5em !important;
    }

    .contact-container h2::before {
        display: none;
    }

    .contact-container h2::after {
        display: none;
    }

    .contact-content {
        flex-direction: column;
    }

    .contact-maps iframe {
        width: 100%;
        height: 500px;
    }

    .contact-content {
        gap: 20px;
    }

    .contact-form {
        padding: 20px;
    }


    footer {
        padding: 50px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-img {
        border-right: none !important;
    }

    .footer-column {
        padding: 0;
        gap: 25px;
        border-right: none !important;
    }

    .footer-column br {
        display: none !important;
    }


    #btnSubir {
        font-size: 25px;
        width: 50px;
        height: 50px;
        padding: 0;
        right: 0;
    }


    #whatsapp-btn {
        bottom: 25%;
        width: 50px;
        font-size: 30px;
        height: 50px;
    }

    #chat-box {
        right: 55px;
        bottom: 30%;
    }


    .comentarios-container h2 {
        font-size: 2.5em;
    }

    .comentarios-container {
        flex-direction: column;
    }

    .comentarios-form {
        padding: 20px;
    }

    .translate {
        top: 10%;
        width: 10%;
        flex-direction: column;
    }


    .especialidad {
        flex-direction: column;
        gap: 20px !important;
    }

    .especialidad-img .especialidad-height {
        height: auto !important;
    }

    .especialidad-img::before {
        content: none !important;
    }

    .especialidad-img::after {
        content: none !important;
    }

    .especialidad-img {
        background-color: #308337;
        padding: 10px;
        border-radius: 5px;
    }

    .especialidad-desc h3::after {
        content: none !important;
    }

    .especialidad-desc h3 {
        text-align: center;
        font-size: 1.5em !important;
    }
}