* {
    box-sizing: border-box;
    scroll-behavior: smooth;
    margin: 0;
}

:root {
    --primary-color: #001E46;
    --second-color: #EAF4FF;
    --text-color: #ffffff;
    --primay-back: #001e46bb;

    --font-primary: "Montserrat";
    --font-second: "Poppins";
}


.mobile,
.menu {
    display: none;
}

html{
    overflow-x: hidden!important;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    padding: 10px 0;
    max-width: 100%;
}

.header-container {
    display: flex;
    width: 100%;
    position: relative;
    align-items: center;
    z-index: 2;
    justify-content: space-between;
    height: 100px;
}

.header-nav {
    display: flex;
    gap: 100px;
    justify-content: space-between;
    padding-right: 50px;
}

.header-container::before {
    content: "";
    position: absolute;
    background-color: var(--primary-color);
    right: 0px;
    top: -10px;
    z-index: -1;
    width: 75%;
    height: 120px;
    border-bottom-left-radius: 10px;
}
.logo img{
    max-width: 80%;
    padding-left: 60px;
}
.header-nav ul {
    display: flex;
    flex-direction: row;
    list-style: none;
    gap: 60px;
    text-transform: uppercase;
}

.header-nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 200;
}

.header-nav .contact {
    display: flex;
    gap: 10px;
    position: relative;
}

.contact::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -50px;
    width: 1px;
    height: 70px;
    background-color: #ffffff73;
}

.header-nav .contact a {
    color: var(--text-color);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 200;
}

.header-nav .contact a i {
    font-size: 1rem;
}



main {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-container {
    width: 100%;
}



.hero {
    background-color: var(--second-color);
    height: 80vh;
    margin-top: 40px;
    display: flex;
    align-items: end;
    font-family: var(--font-primary);
    justify-content: center;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-desc {
    width: 60%;
    padding: 0 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.hero-desc h1 {
    font-weight: 400;
    font-size: 2.3rem;
    color: var(--primary-color);
}

.hero-desc p {
    font-size: 1rem;
}

.hero-desc h1 span {
    font-weight: 700;
}

.hero-img {
    display: flex;
    width: 70%;
    justify-content: end;
    align-items: end;
}

.hero-img img {
    width: 95%;
    margin-top: 100px;
}

.hero-contact {
    display: flex;
    gap: 20px;
}

.hero-contact a {
    background-color: var(--primary-color);
    padding: 5px 20px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.1rem;
    border: 1px solid var(--primary-color);
}

.hero-contact .conocenos {
    background-color: var(--second-color);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}




.solutions {
    background-image: url(/assets/img/fondos.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    height: 80vh;
    justify-content: center;
}

.solutions-container {
    background-color: var(--primay-back);
    width: 100%;
    display: flex;
    height: 80vh;
    align-items: center;
    justify-content: center;
    padding: 100px;
    flex-direction: column;
}

.solution-desc {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.solution-desc h2 {
    color: var(--text-color);
    font-weight: 300;
    width: 80%;
    padding-bottom: 50px;
    font-size: 2rem;
    font-family: var(--font-primary);
}

.solution-desc h2 span {
    text-transform: uppercase;
    font-weight: 700;
}

.solution-point {
    color: var(--primary-color);
    font-family: var(--font-primary);
    position: relative;
    width: 100%;
}

.solution-point::before {
    content: "";
    position: absolute;
    width: 65%;
    height: 130px;
    top: 10px;
    left: -100px;
    background-color: var(--second-color);
}

.solution-point p {
    position: absolute;
    text-align: left;
    left: -30px;
    font-size: 1.2rem;
    top: 40px;
    width: 55%;
}

.afiliados {
    padding-top: 50px;
    padding-bottom: 100px;
}

.afiliador-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.afiliador-container h2 {
    font-family: var(--font-primary);
    text-align: center;
    font-size: 2rem;
    width: 30%;
    font-weight: 400;
    color: var(--primary-color);
}

.afiliador-container h2 span {
    font-weight: 700;
}

.swiper {
    width: 90%;
    margin-top: 70px;
}

.swiper-wrapper {
    display: flex !important;
}

.swiper-slide {
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    width: 100%;
    background-color: var(--text-color);
    height: 100px;
    box-shadow: 0 0 10px #ffffffb0;
    object-fit: contain;
}

.swiper-button-next,
.swiper-button-prev {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next i,
.swiper-button-prev i {
    color: var(--primary-color);
    font-size: 2.5rem;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}



footer {
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    justify-content: center;
    padding: 60px 0;
}

footer a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.8rem;
    font-family: var(--font-primary);
}

.footer-container {
    display: flex;
    width: 80%;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    position: relative;
    padding-top: 100px;
    z-index: 3;
}

.footer-logo::before {
    content: "";
    position: absolute;
    width: 120%;
    height: 329px;
    left: -20px;
    z-index: -1;
    top: -70px;
    background-color: var(--text-color);
}

.footer-links,
.footer-contact,
.footer-social {
    display: flex;
    gap: 15px;
    flex-direction: column;
    align-self: flex-start;
}

.footer-links a {
    text-transform: uppercase;
    font-weight: 300;
}

.footer-row{
    display: flex;
    gap: 30px;
    width: 65%;
    flex-direction: column;
}

.footer-row1{
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.footer-ubi{
    display: flex;
    align-items: center;
    color: var(--text-color);
    font-family: var(--font-primary);
    justify-content: center;
    text-align: center;
}
.footer-ubi h3{
    font-weight: 300;
    font-size: 1rem;
}




/* SERVICES */
.services {
    padding: 50px 0;
}

.iso {
    background-image: url(/assets/img/Fondos\ servicios-3-bn.png);
}

.mintra {
    background-image: url(/assets/img/auditoria-mintra.png);
}

.capacitaciones {
    background-image: url(/assets/img/capacitaciones.png);
}

.certificacion {
    background-image: url(/assets/img/certificacion-iso.png);
}

.service-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 60%;
    height: 70vh;
}

.services-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-direction: column;
}

.all-services {
    width: 80%;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    padding: 0 100px;
    height: 70vh;
    background-color: var(--primary-color);
    gap: 15px;
}

.services-card {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-around;
}

.service-title {
    background-color: #001e46c0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-family: var(--font-primary);
    height: 70vh;
}

.service-title h2 {
    font-weight: 300;
    font-size: 2rem;
    text-align: left!important;
    padding: 0 60px;
}

.service-title h2 span {
    font-weight: 600;
}

.more-services {
    display: flex;
    gap: 5px;
    margin-bottom: 0px;
    color: var(--text-color);
    font-family: var(--font-primary);
    font-size: 1.1rem;
}

.certificaciones {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 5px;
    padding-top: 50px;
    margin-bottom: 15px;
    color: var(--text-color);
    font-family: var(--font-primary);
}

.more-services p {
    font-weight: 700;
}

.mintra-title {
    font-size: 1.5rem;
    font-weight: 400 !important;
}

.all-services h3 {
    font-family: var(--font-primary);
    color: var(--text-color);
    padding-bottom: 10px;
}

.all-services h4 {
    font-family: var(--font-primary);
    color: var(--text-color);
    padding-bottom: 10px;
    font-weight: 300;
    font-size: 1.2rem;
}

.all-services span {
    font-weight: 400;
}

.more-services img {
    width: 50%;
}

.certificaciones-iso {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
}

.certificaciones-iso2 {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
}

.certificaciones-iso span {
    font-size: 1rem;
    width: 50%;
    padding-top: 5px;
    text-align: center;
}

.certificaciones-iso2 img {
    width: 50%;
}

.certificaciones-iso2 span {
    font-size: 1rem;
    padding-top: 5px;
    text-align: center;
    width: 50%;
}



/* ABOUT US */
.about {
    background-image: url(/assets/img/quienes-somos.png);
    background-size: cover;
    display: flex;
    margin-top: 50px;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 75vh;
}

.about-container {
    background-color: var(--primay-back);
    width: 100%;
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-desc {
    font-family: var(--font-primary);
    color: var(--text-color);
    width: 65%;
    text-align: center;
}

.about-desc h1 {
    font-weight: 400;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-desc h1 span {
    font-weight: 700;
}

.about-desc p {
    font-size: 1.4rem;
}



.features {
    background-color: var(--primary-color);
    padding: 100px 0;
}

.features-container {
    display: flex;
    color: var(--text-color);
    font-family: var(--font-primary);
}

.mision,
.vision {
    padding: 0 100px;
    display: flex;
    gap: 20px;
    flex-direction: column;
    text-align: center;
}

.mision h3,
.vision h3 {
    font-weight: 400;
    font-size: 2.2em;
}

.mision span,
.vision span {
    font-weight: 700;
}

.mision p,
.vision p {
    font-size: 1.2rem;
}



.values {
    background-color: var(--second-color);
    padding: 100px 0;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
}

.values-container {
    width: 90%;
}

.values h3 {
    font-weight: 400;
    font-size: 2rem;
}

.values span {
    font-weight: 700;
}

.values-container {
    display: flex;
    margin-top: 50px;
    align-items: flex-start;
}

.values-card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap:20px;
}

.values-card img {
    width: auto;
    max-height: 90px;
}

.values-card p {
    font-size: 1.4rem;
    max-width: 250px;
}




/* CONTACT */
.contacts {
    padding-top: 40px;
}

.contact-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-img {
    background-image: url(/assets/img/contacto.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-title {
    display: flex;
    background-color: var(--primay-back);
    align-items: center;
    width: 100%;
    height: 70vh;
    justify-content: center;
    font-family: var(--font-primary);
    color: var(--text-color);
    font-size: 2rem;
}

.contact-form {
    width: 100%;
    background-color: var(--primary-color);
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

form {
    display: grid;
    gap: 12px;
    font-family: var(--font-primary);
    width: 50%;
}

::placeholder {
    font-family: var(--font-primary);
    color: var(--text-color);
    text-transform: uppercase;
}

label {
    font-size: 13px;
    color: #333;
}

input[type="text"],
input[type="email"],
textarea,
select {
    width: 100%;
    outline: none;
    border: none;
    padding: 10px 0;
    border-bottom: 1px solid #d1d5db;
    font-size: 1rem;
    color: var(--text-color);
    font-family: var(--font-primary);
    background: transparent;
}

textarea {
    resize: vertical;
}

.row {
    display: flex;
    gap: 12px;
}

.row>* {
    flex: 1;
}

.actions {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 26px;
}

button {
    padding: 10px 45px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
}

.btn-primary {
    background: transparent;
    color: white;
    font-family: var(--font-primary);
    border: 1px solid var(--text-color);
    font-weight: 400;
}

.btn-secondary {
    background: transparent;
    border: 1px solid #d1d5db;
    color: #111;
}



.maps {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.maps iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%) brightness(90%);
  transition: filter 0.6s ease, transform 0.4s ease;
}

.maps:hover iframe {
  filter: grayscale(0%) brightness(100%);
  transform: scale(1.02);
}



.escribenos a {
    position: absolute;
}

.escribenos a img {
    width: 5%;
    position: fixed;
    z-index: 99;
    right: 30px;
    bottom: 30px;
}

@media screen and (max-width: 1080px) and (min-width: 769px) {
    .mobile {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 50px;
        padding-top: 40px;
    }

    .mobile-nav {
        display: block;
        font-size: 32px;
        cursor: pointer;
        background-color: #ffffff5b;
        border-radius: 15px;
        padding-block: 5px;
        padding-inline: 7px;
        position: fixed;
        right: 50px;
        z-index: 99;
    }

    .mobile-nav i {
        color: var(--primary-color);
        padding: 5px;
        background-color: var(--bg-white);
    }

    #close-menu {
        display: none;
    }

    .menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: var(--primary-color);
        flex-direction: column;
        display: flex;
        gap: 50px;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding: 100px 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        transition: left 0.4s ease;
        z-index: 15;
    }

    .menu.open {
        left: 0;
    }

    .menu ul {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 0;
    }

    .menu ul li {
        list-style: none;
    }

    .menu ul li a {
        font-size: 1.5rem;
        font-family: var(--font-primary);
        color: var(--text-color);
        padding: 5px 35px;
        text-decoration: none;
        background: transparent;
        border: 1px solid var(--text-color);
    }

    .mobile-contact {
        display: flex;
        gap: 10px;
        font-family: var(--font-primary);
    }

    .mobile-contact a {
        color: var(--text-color);
        text-decoration: none;
        font-size: 1.5rem;
    }

    header {
        display: none;
    }

    .mobile-logo img{
        max-width: 200px;
    }

    .escribenos a img {
        width: 12%;
    }

    .hero {
        height: 80vh;
    }

    .hero-container {
        flex-direction: column;
        gap: 20px;
    }

    .hero-desc {
        padding: 0 5px;
        width: 90%;
    }

    .hero-desc h1 {
        font-size: 2rem;
    }

    .hero-desc p {
        font-size: 1.2rem;
    }

    .hero-img img {
        margin-top: 0;
        width: 70%;
    }

    .hero-contact a {
        font-size: 1.3rem;
    }

    .mision,
    .vision {
        padding: 0 60px;
    }

    .features h3{
        font-size: 2em;
    }

    .values-card p{
        font-size: 1em;
    }

    .values-card img{
        max-height: 70px;
    }

    .solutions {
        height: 80vh;
    }

    .solutions-container {
        height: 80vh;
        padding: 0;
    }

    .solution-desc h2 {
        font-size: 2rem;
    }

    .solution-point p {
        font-size: 1.5rem;
        left: 0;
        top: 150px;
        width: 100%;
        text-align: center;
    }

    .solution-point::before {
        left: 0;
        width: 100%;
        top: 130px;
        height: 120px;
    }


    .afiliador-container h2 {
        width: 70%;
        font-size: 2rem;
    }



    .footer-container {
        display: grid;
        grid-template-columns: auto auto auto auto;
        grid-gap: 50px;
    }

    .footer-links {
        margin-top: 0px;
    }

    .footer-logo{
        display: none;
    }

    .footer-logo::before {
        width: 100%;
        height: 290px;
    }

    .footer-logo img {
        width: 60%;
    }



    .services-card {
        flex-direction: column;
    }

    .service-img {
        width: 100%;
        height: 50vh;
    }

    .service-title {
        height: 70vh;
    }

    .service-title h2 {
        font-size: 2.2rem;
    }

    .all-services {
        padding: 0 80px;
        height: 50vh;
        width: 100%;
    }

    .more-services {
        font-size: 1.2rem;
    }

    .more-services p {
        font-size: 1.2rem;
    }

    .all-services h4 {
        font-size: 1.4rem;
    }

    .mintra-title {
        font-size: 1.2rem;
    }

    .more-services img {
        width: 80%;
    }

    .certificaciones {
        padding-top: 10px;
    }

    .certificaciones-iso span {
        width: 80%;
    }

    .certificaciones-iso2 span {
        width: 80%;
    }
}

@media screen and (max-width: 768px) and (min-width: 481px) {
    .mobile {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 50px;
    }

    .mobile-nav {
        display: block;
        font-size: 32px;
        cursor: pointer;

        position: fixed;
        right: 50px;
        z-index: 99;
    }

    .mobile-nav i {
        color: var(--primary-color);
        padding: 5px;
        background-color: var(--bg-white);
    }

    #close-menu {
        display: none;
    }

    .menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: var(--primary-color);
        flex-direction: column;
        display: flex;
        gap: 50px;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding: 100px 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        transition: left 0.4s ease;
        z-index: 15;
    }

    .menu.open {
        left: 0;
    }

    .menu ul {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 0;
    }

    .menu ul li {
        list-style: none;
    }

    .menu ul li a {
        font-size: 1.5rem;
        font-family: var(--font-primary);
        color: var(--text-color);
        padding: 5px 35px;
        text-decoration: none;
        background: transparent;
        border: 1px solid var(--text-color);
    }

    .mobile-contact {
        display: flex;
        gap: 10px;
        font-family: var(--font-primary);
    }

    .mobile-contact a {
        color: var(--text-color);
        text-decoration: none;
        font-size: 1.5rem;
    }


    header {
        display: none;
    }

    .escribenos a img {
        width: 10%;
    }

    .hero {
        height: 80vh;
    }

    .hero-container {
        flex-direction: column;
        gap: 50px;
    }

    .hero-desc {
        padding: 0 5px;
        width: 90%;
    }

    .hero-desc h1 {
        font-size: 1.5rem;
    }

    .hero-desc p {
        font-size: 1.2rem;
    }

    .hero-img img {
        margin-top: 0;
        width: 90%;
    }

    .hero-contact a {
        font-size: 1rem;
    }



    .solutions {
        height: 80vh;
    }

    .solutions-container {
        height: 80vh;
        padding: 0;
    }

    .solution-desc h2 {
        font-size: 1.4rem;
    }

    .solution-point p {
        font-size: 1.2rem;
        left: 0;
        top: 150px;
        width: 100%;
        text-align: center;
    }

    .solution-point::before {
        left: 0;
        width: 100%;
        top: 130px;
        height: 120px;
    }



    .afiliador-container h2 {
        width: 70%;
        font-size: 1.8rem;
    }



    .footer-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 50px;
    }

    .footer-links {
        margin-top: 50px;
    }

    .footer-logo::before {
        width: 100%;
        height: 270px;
    }

    .footer-logo img {
        width: 80%;
    }

     .footer-row{
        width: auto;
    }
    
    .footer-row1{
        flex-direction: column;
        gap: 50px;
    }

    .footer-ubi h3{
        font-size: 0.9rem;
    }



    .services-card {
        flex-direction: column;
    }

    .service-img {
        width: 100%;
        height: 50vh;
    }

    .service-title {
        height: 50vh;
    }

    .service-title h2 {
        font-size: 3rem;
    }

    .all-services {
        padding: 0 50px;
        height: 50vh;
    }

    .more-services {
        font-size: 1.2rem;
    }

    .mintra-title {
        font-size: 1.2rem;
    }

    .more-services img {
        width: 80%;
    }

    .certificaciones {
        padding-top: 10px;
    }

    .certificaciones-iso span {
        width: 80%;
    }

    .certificaciones-iso2 span {
        width: 80%;
    }



    .about {
        height: 60vh;
    }

    .about-desc {
        width: 80%;
    }

    .about-desc p {
        font-size: 1.2rem;
    }

    .values-card img {
        width: 40%;
    }

    .about-container {
        height: 60vh;
    }

    .features-container {
        flex-direction: column;
        gap: 50px;
    }

    .mision,
    .vision {
        padding: 0 20px;
    }

    .values-container {
        flex-direction: column;
        gap: 50px;
    }




    .contact-container {
        flex-direction: column;
    }

    .contact-img {
        height: 50vh;
    }

    .contact-title {
        height: 50vh;
    }

    form {
        width: 80%;
    }

    .contact-form {
        height: 50vh;
    }

    .maps img {
        height: 50vh;
    }
}

@media (max-width: 480px) {
    .mobile {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0px 10px 20px;
    }
    .mobile-logo img{
        max-width: 150px!important;
    }
    .mobile-nav {
        display: block;
        font-size: 32px;
        cursor: pointer;
        position: fixed;
        right: 20px;
        z-index: 99;
        background-color: #ffffff5b;
        border-radius: 15px;
        padding-block: 5px;
        padding-inline: 7px;
    }

    .mobile-nav i {
        color: var(--primary-color);
        padding: 5px;
        background-color: var(--bg-white);
    }

    #close-menu {
        display: none;
    }

    .menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: var(--primary-color);
        flex-direction: column;
        display: flex;
        gap: 50px;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding: 100px 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        transition: left 0.4s ease;
        z-index: 15;
    }

    .menu.open {
        left: 0;
    }

    .menu ul {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 0;
    }

    .menu ul li {
        list-style: none;
    }

    .menu ul li a {
        font-size: 1.5rem;
        font-family: var(--font-primary);
        color: var(--text-color);
        padding: 5px 35px;
        text-decoration: none;
        background: transparent;
        border: 1px solid var(--text-color);
    }

    .mobile-contact {
        display: flex;
        gap: 10px;
        font-family: var(--font-primary);
    }

    .mobile-contact a {
        color: var(--text-color);
        text-decoration: none;
        font-size: 1.5rem;
    }



    header {
        display: none;
    }


    .hero {
        height: max-content;
        margin-top: 0;
        padding-top: 40px;
    }

    .hero-container {
        flex-direction: column;
    }

    .hero-desc {
        padding: 0 5px;
        width: 90%;
    }

    .hero-desc h1 {
        font-size: 1rem;
    }

    .hero-desc p {
        font-size: 1rem;
    }

    .hero-img img {
        margin-top: 20px;
    }

    .hero-contact a {
        font-size: 0.8rem;
    }



    .solutions {
        height: 60vh;
    }

    .solutions-container {
        height: 60vh;
        padding: 0;
    }

    .solution-desc h2 {
        font-size: 1.4rem;
    }

    .solution-point p {
        font-size: 1rem;
        left: 0;
        top: 50px;
        width: 100%;
        text-align: center;
    }

    .solution-point::before {
        left: 0;
        width: 100%;
        top: 30px;
        height: 120px;
    }

    .afiliados{
        margin-top: 50px;
    }
    .afiliador-container h2 {
        width: 100%;
        font-size: 1.5rem;
    }



    .footer-container {
        display: flex;
        flex-direction: column !important;
        gap: 50px;
        align-items: start;
    }

    .footer-links {
        margin-top: 50px;
    }

    .footer-row{
        width: auto;
    }
    
    .footer-row1{
        flex-direction: column;
        gap: 50px;
    }

    .footer-ubi h3{
        font-size: 0.9rem;
    }


    .escribenos a img {
        width: 20%;
    }



    .services {
        padding: 0;
    }

    .services-card {
        flex-direction: column;
    }

    .service-img {
        width: 100%;
        height: 50vh;
    }

    .service-title {
        height: 50vh;
    }

    .service-title h2 {
        font-size: 2rem;
    }

    .all-services {
        padding-inline: 20px;
        padding-block: 40px;
        height: max-content;
        width: 100%;
    }

    .more-services {
        font-size: 1rem;
    }

    .more-services p {
        font-size: 0.8rem;
        width: 80px;
    }

    .mintra-title {
        font-size: 1.2rem;
    }

    .more-services img {
        width: 80%;
    }

    .certificaciones {
        padding-top: 10px;
    }

    .certificaciones-iso span {
        width: 80%;
    }

    .certificaciones-iso2 span {
        width: 80%;
    }



    .about {
        height: 60vh;
        margin-top: 0;
    }

    .about-desc {
        width: 80%;
    }

    .about-desc p {
        font-size: 1.2rem;
    }

    .about-container {
        height: 60vh;
    }

    .features-container {
        flex-direction: column;
        gap: 50px;
    }

    .mision,
    .vision {
        padding: 0 20px;
    }
    
    .values-container {
        flex-direction: column;
        gap: 50px;
        padding-inline: 20px;
        align-items: center;
    }



    .contacts {
        padding: 0;
    }

    .contact-container {
        flex-direction: column;
    }

    .contact-form{
        height: max-content!important;
        padding-bottom: 40px;
    }
    .contact-img {
        height: 50vh;
    }

    .contact-title {
        height: 50vh;
    }

    form {
        width: 80%;
    }

    .contact-form {
        height: 50vh;
    }

    .maps img {
        height: 50vh;
    }
}