

        :root {
            --primary-color: #0056b3;
            --secondary-color: #003366;
            --accent-color: #2fb702;/*#00a8e8;*/
            --light-color: #f8f9fa;
            --dark-color: #343a40;
            --success-color: #28a745;
            --danger-color: #dc3545;
            --warning-color: #ffc107;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            line-height: 1.6;
            color: #333;
            background-color: #fff;
        }

        a {
            text-decoration: none;
            color: var(--primary-color);
        }

        ul {
            list-style: none;
        }
        
@font-face {
  font-family: 'raleway';
  src: url('../fuentes/Raleway-VariableFont_wght.ttf') format('truetype-variations');
  font-weight: 300 800; /* Rango de pesos disponibles */
  font-style: normal;
  font-stretch: 75% 125%; /* Rango de anchos disponibles */
}

@font-face {
  font-family: 'Roboto';
  src: url('../fuentes/Roboto-VariableFont_wdth,wght.ttf') format('truetype-variations');
  font-weight: 300 800; /* Rango de pesos disponibles */
  font-style: normal;
  font-stretch: 75% 125%; /* Rango de anchos disponibles */
}

h1, h2, h3 {font-family: 'Roboto';letter-spacing: -0.5px;}
p {font-family: 'Roboto'}

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 12px 24px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }

        .btn-primary {
            background-color: var(--primary-color);
            color: white;
        }

        .btn-primary:hover {
            background-color: var(--secondary-color);
        }

        .btn-outline {
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            background-color: transparent;
        }

        .btn-outline:hover {
            background-color: var(--primary-color);
            color: white;
        }

        .section {
            padding: 70px 0;
        }

        .section-title {
            font-size: 2.2rem;
            margin-bottom: 3.5rem;
            position: relative;
            color: var(--secondary-color);
            text-align: center;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--accent-color);
        }

        .section-description {
            text-align: center;
            max-width: 960px;
            margin: 0 auto 40px;
            color: #666;
            font-size: 1.1rem;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header-scrolled {
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .logo {
            font-size: 1.8rem;
            color: var(--secondary-color);
            font-family: "raleway";
            font-weight: 500;
        }

        .logo span {
            /*color: var(--accent-color);*/
            color:#2fb702;
            font-family: "raleway";
            font-weight: 800;
        }

        .sub-logo {font-size: 0.875rem;/* 14px*/
        font-weight: 400;
        color: #525252;
        margin-top: -8px;
        font-family: "raleway";
        letter-spacing: .4px;
    }

        .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em 0;
}

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

.nav-links li {
    margin-left: 1em;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    padding: 0.5em 1em;
    transition: background-color 0.3s ease;
    font-weight: 400;
    font-family: 'Roboto';
    border-radius: 5px;
}

.nav-links a:hover {
    background-color: #ddd;
    border-radius: 5px;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border-top: none;
    width: 250px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    z-index: 10;
    transform: translate(-60px, 15px);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.5em 1em;
    color: #333;
    text-decoration: none;
    padding-left: 20px;
    transition: background-color 0.3s ease;

}

.dropdown-menu a:hover {
    background-color: #f0f0f0;
}

.dropdown:hover .dropdown-menu {
    display: block;
    max-height: 500px;
    transform: translate(-60px, 15px);
}

/* Estilos para el menú móvil */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
}

.mobile-nav-toggle i {
    color: #333;
}

       /* .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }*/

        /*.nav-links {
            display: flex;
        }

        .nav-links li {
            margin-left: 0px;
            padding: 20px;
        }

        .nav-links a {
            font-weight: 600;
            color: var(--dark-color);
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--accent-color);
        }

        .nav-links a.active {
            color: #0d71dd !important;
        }

        .mobile-nav-toggle {
            display: none;
            background: transparent;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark-color);
        }
        /*Cierre de menu*/

        /* Hero Section */
        #hero {
            height: 90vh;
            background-image: url("../imagenes/consultoria-estrategia-ia-empresas.webp");
            background-size: cover;
            background-repeat: no-repeat;
            background-position: 0% 24%;
            color: white;
            display: flex;
            align-items: center;
            text-align: center;
        }

        #hero-pagina-contacto {
            height: 70vh;
            background-image: url("../imagenes/consultoria-estrategia-ia-empresas.webp");
            background-size: cover;
            background-repeat: no-repeat;
            color: white;
            display: flex;
            align-items: center;
            text-align: center;
        }
        #hero-servicios-recomendados {
            height: 70vh;
            background-image: url("../imagenes/fondo-servicios-recomendados.webp");
            background-size: cover;
            background-position-y: 12%;
            background-repeat: no-repeat;
            color: white;
            display: flex;
            align-items: center;
            text-align: center;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            margin-top: 5%;
        }
        .hero-content-servicios-recomendados {
            max-width: 800px;
            margin: 0 auto;
            margin-top: 10%;
        }


        .hero-title {
            font-size: 3rem;
            margin-bottom: 20px;
            letter-spacing: -.5px;
            text-shadow: 2px 2px 1px rgba(0,0,0,0.7);
            animation: fadeInDown 1s ease;
        }

        .hero-subtitle {
            font-size: 1.4rem;
            letter-spacing: -.2px;
            font-weight: 600;
            text-shadow: 2px 2px 1px rgba(0,0,0,0.7);
            margin-bottom: 40px;
            animation: fadeInUp 1s ease;
        }

        .hero-cta {
            display: flex;
            justify-content: center;
            gap: 20px;
            animation: fadeIn 1.5s ease;
        }

        /* Benefits Section */
        .benefits-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .benefit-card {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .benefit-card-pruebas-y-evaluaciones {
            background-color: #efefef;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
        }

        .benefit-card-pruebas-y-evaluaciones:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .benefit-card-servicios {
            /*background-color: #e2f2ff;*/
            border: 1px solid #e1e1e1;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
        }

        .benefit-card-servicios:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .benefit-icon {
            font-size: 2.5rem;
            color: var(--accent-color);
            margin-bottom: 20px;
        }

        .benefit-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }

        .benefit-description {
            color: #666;
        }

        /* Testimonials Section */
        .testimonial-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .testimonial-slide {
            background-color: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            text-align: center;
            display: none;
        }

        .testimonial-slide.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        .client-info {
            margin-top: 20px;
        }

        .client-name {
            font-weight: 700;
            color: var(--secondary-color);
        }

        .client-position {
            font-style: italic;
            color: #666;
            font-size: 0.9rem;
        }

        .testimonial-nav {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }

        .testimonial-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ddd;
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .testimonial-dot.active {
            background-color: var(--accent-color);
        }

        /* About Section */
        #about {
            background-color: var(--light-color);
        }

        .about-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
            align-items: center;
        }

        .mission-content, .difference-content {
            margin-bottom: 40px;
        }

        .about-title {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--secondary-color);
        }

        .team-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .team-member {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }

        .team-member:hover {
            transform: translateY(-10px);
        }

        .team-img img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .team-info {
            padding: 20px;
            text-align: center;
        }

        .team-name {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: var(--secondary-color);
        }

        .team-position {
            color: #666;
            font-style: italic;
            margin-bottom: 10px;
        }

        /* Services Section */
        .services-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .service-icon {
            font-size: 2.5rem;
            color: var(--accent-color);
            margin-bottom: 20px;
        }

        .service-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }

        .service-items {
            list-style-type: disc;
            padding-left: 20px;
            margin-top: 15px;
        }

        .service-items li {
            margin-bottom: 10px;
            color: #666;
        }

        /* Blog Section */
        #blog {
            background-color: var(--light-color);
        }

        .blog-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .blog-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }

        .blog-card:hover {
            transform: translateY(-10px);
        }

        .blog-img {
            height: 200px;
            overflow: hidden;
        }

        .blog-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .blog-card:hover .blog-img img {
            transform: scale(1.1);
        }

        .blog-content {
            padding: 20px;
        }

        .blog-category {
            display: inline-block;
            background-color: var(--accent-color);
            color: white;
            padding: 5px 10px;
            border-radius: 3px;
            font-size: 0.8rem;
            margin-bottom: 10px;
        }

        .blog-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--secondary-color);
        }

        .blog-excerpt {
            color: #666;
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .blog-date {
            color: #999;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
        }

        .blog-date i {
            margin-right: 5px;
        }

        /* Contact Section */
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .contact-icon {
            font-size: 1.5rem;
            color: var(--accent-color);
        }

        .contact-text h4 {
            margin-bottom: 5px;
            color: var(--secondary-color);
        }

        .contact-text p {
            color: #666;
        }

        .redes-sociales {font-size:2rem}

        .redes-sociales a {margin-right: 0.7rem;}

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--accent-color);
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: var(--primary-color);
            transform: translateY(-5px);
        }

        .contact-form {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 600;
            color: var(--secondary-color);
        }

        /*Sección de switch de acepto los terminos y condiciones*/
		.switch {
		    position: relative;
		    display: inline-block;
		    width: 40px;
		    height: 20px;
		}
		.switch input {
		    opacity: 0;
		    width: 0;
		    height: 0;
		}

		.slider {
		    position: absolute;
		    cursor: pointer;
		    top: 0;
		    left: 0;
		    right: 0;
		    bottom: 0;
		    background-color: #ccc;
		    transition: .4s;
		    border-radius: 20px;
		}
		.slider:before {
		    position: absolute;
		    content: "";
		    height: 14px;
		    width: 14px;
		    left: 3px;
		    bottom: 3px;
		    background-color: white;
		    transition: .4s;
		    border-radius: 50%;
		}
		input:checked + .slider {
		    background-color: #28a745;
		}
		input:checked + .slider:before {
		    transform: translateX(20px);
		}
		/*Cierre de Sección de switch de acepto los terminos y condiciones*/

        .form-control {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--accent-color);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }

        .btn-whatsapp {
            background-color: #25D366;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .btn-whatsapp:hover {
            background-color: #128C7E;
        }

        /* Footer */
        footer {
            background-color: var(--secondary-color);
            color: white;
            padding: 40px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-col h4 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--accent-color);
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #ddd;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            right: 20px;
            bottom: 20px;
            width: 40px;
            height: 40px;
            background-color: var(--accent-color);
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            z-index: 999;
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background-color: var(--primary-color);
            transform: translateY(-5px);
        }

        /*Estilos Footer Imagenes de Empresas*/
        .content-div-empresas {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        .content-div-img {display: inline-block; text-align: center;}
        .content-div-img img {width: auto;}
        /*Cierre de Estilos Footer Imagenes de Empresas*/


/*ESTILOS CSS DROPDOWN DEL MENU */
.dropdown ul.dropdown-menu li {margin-bottom: 1rem;
    line-height: 23px; padding: 0;}


.dropdown {
    position: relative;
}

/* Menú desplegable en escritorio */

    /*.nav-links {
        flex-direction: row;
    }*/


    /*.dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        /*left: 0;*/
       /* background: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        list-style: none;
        padding: 10px 0;
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
    }*/



    /*.dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        position: absolute;
        min-width: 265px; /* Ajusta este valor según el contenido */
       /* padding: 10px 15px;
        background: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border-radius: 5px;
        /*white-space: nowrap; /* Evita que el texto se divida */
/*left: 50%;
    transform: translateX(-50%);
    }*/




/*ESTILOS FORMULARIO DE CONTACTO*/
.contact-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.form-group {
    margin-bottom: 15px;
}
label {
    font-weight: bold;
}
.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}
.btn {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    background: var(--primary-color);
    color: white;
    cursor: pointer;
    border: 1px solid #afafaf;
}
.btn:hover {
    background: var(--secondary-color);
}
/*CIERRE DE ESTILOS FORMULARIO DE CONTACTO*/

.enlace-contraste-seo {color:#0000ff;}

.texto-switch-acepto-terminos-pc {display: block;
    width: 300px;
    margin-left: 60px;}
.texto-switch-acepto-terminos-movil {display: none;}

.footer-pc {display: block;}
.footer-movil {display: none;}
.menu-modo-pc {display: block;}
.menu-2-modo-celular {display: none;}


        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Styles */
        @media (max-width: 991px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #f0f0f0;
        border-top: 1px solid #ccc;
        z-index: 10;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 0;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 1em;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .tamano-letra-menu {font-size: 0.875em;}

    .dropdown-menu {
        position: static;
        width: 100%;
        border: none;
        box-shadow: none;
        max-height: 0; /* Añadido aquí también */
    }

    .dropdown:hover .dropdown-menu {
        display: none;
        max-height: 0;
    }

    .dropdown.active .dropdown-menu {
        display: block;
        max-height: 500px;
        transform: translate(0px, 0px);
    }
            /*.navbar {
                padding: 15px 0;
            }

            .mobile-nav-toggle {
                display: block;
            }

            .nav-links {
                position: fixed;
                top: 70px;
                right: -100%;
                width: 250px;
                height: calc(100vh - 70px);
                background-color: white;
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 30px;
                transition: right 0.3s ease;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links li {
                margin: 0 0 0px 0;
            }

            .hero-cta {
                flex-direction: column;
                gap: 15px;
            }

            .hero-cta .btn {
                width: 100%;
            }

            .testimonial-slide {
                padding: 20px;
            }

            .contact-container {
                grid-template-columns: 1fr;
            }*/

            /* Menú desplegable en dispositivos móviles */
           /* .dropdown-menu {
                display: none;
                overflow: hidden;
                max-height: 0;
                transition: max-height 0.4s ease-in-out;
            }



            .dropdown.active .dropdown-menu {
                display: block;
                max-height: 500px; /* Ajusta según la altura de tus elementos 
            }*/
            /* Cierre Menú desplegable en dispositivos móviles */



        }





        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
                line-height: 2.5rem;
            }

            .hero-content {
                margin-top: 18%;
            }

            .section {
                padding: 50px 0;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .benefit-card, .service-card, .blog-card, .team-member {
                padding: 20px;
            }

            .about-content {
                display: inherit;
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 50px;
                align-items: center;
            }

            .about-title {
                font-size: 1.6rem;
            }

            #hero {
                height: 100vh;
            }

            .container {
                width: 94%;
                padding: 0 10px;
            }

            .redes-sociales {font-size:4rem}
            .redes-sociales a {margin-right: 5px;}

            /*switch Formulario*/
            .switch {
                width: 85px;
                height: 36px;
            }

            input:checked + .slider:before {
                transform: translateX(45px);
            }

            .slider:before {
                position: absolute;
                content: "";
                height: 30px;
                width: 30px;
                left: 3px;
                bottom: 3px;
                background-color: white;
                transition: .4s;
                border-radius: 50%;
            }
            /*Cierre de switch Formulario*/

            /*Adaptación de tamaño de texto*/
            .hero-subtitle {
                font-size: 1.3rem;
            }

            .section-description {
                font-size: 1.3rem;
            }

            .benefit-title {
                font-size: 1.6rem;
                line-height: 2.188rem; /*equivale a 35px*/
            }

            .benefit-description {
                font-size: 1.3rem;
                color: #4a4a4a;
                margin-bottom: 10%;
            }

            .btn {
                font-size: 1.2rem;
            }

            p {font-size: 1.3rem}

            div.form-group label {font-size: 1.2rem}
            div.form-group span {font-size: 1.3rem}
            /*Cierre de Adaptación de tamaño de texto*/

           .texto-switch-acepto-terminos-pc {display: none;}
           .texto-switch-acepto-terminos-movil {
            display: block;
            font-weight: 700;
            margin-bottom: 1rem;
            font-size: 1.1rem;
            width: 320px;
            float: left;
            margin-top: 20px;}

           .footer-pc {display: none;}
           .footer-movil {display: block;}
           .linea-separadora-solo-celular {margin-top: 10px;margin-bottom: 10px;border: 1px solid #898989;width: 80%;}
           .menu-2-modo-celular {display: block;}
           .menu-modo-pc {display: none;}
        }
