 	*{
		margin: 0;
		padding: 0;
		box-sizing: border-box;
		font-family: sans-serif;
	}
	body{
		background-color: whitesmoke;
		background-repeat: no-repeat;
        padding-top: 0px;
        padding-bottom: 100px; 
	}
    body h1{
        font-family: 'Trebuchet ms';
    }
	.capa{
        display: none;
		position: fixed;
		width: 100%;
		height: 100vh;
		background-color: #e2e2e2;
		top: 0;left: 0;
	}

    /* ANIMACIÓN: SCROLL*/
    /* Ocultar elementos por defecto */
    .aparecer {
        opacity: 0;
        transform: translateY(50px); /* Empezará ligeramente desplazado */
        transition: opacity 0.8s ease-out, transform 0.8s ease-out; /* Animaciones */
    }
    /* Cuando el elemento sea visible, cambiará de estilo */
    .aparecer.visible {
        opacity: 1;
        transform: translateY(0); /* Vuelve a su posición original */
    }
	
/* ENCABEZADO */
	.header{
		width: 100%;
		height: 95px;
		position: fixed;
		top: 0;left: 0;
        background-color: black;
        opacity: 90%;
        z-index: 1;
	}
	.container{
		width: 90%;
		max-width: 1200px;
		margin: auto;
	}
	.container .btn-menu, .logo{
		float: left;
		line-height:100px;
	}
    /*Experimento logo*/
    .logo-img {
        height: 65px; 
        width: auto; 
        /*margin-left: 20px; /* separar la imagen del texto */
        vertical-align: middle; 
    }
    .container .btn-menu label{
		color: #fff;
		font-size: 25px;
		cursor: pointer;
	}
	.logo h1{
		color: #fff;
		font-weight: 400;
		font-size: 22px;
		margin-left: 10px;
	}
	.container .menu{
		float: right;
		line-height: 100px;
	}
	.container .menu a{
		display: inline-block;
		padding: 15px;
		line-height: normal;
		text-decoration: none;
		color: #fff;
		transition: all 0.3s ease;
		border-bottom: 2px solid transparent;
		font-size: 18px;
		margin-right: 5px;
	}
	.container .menu a:hover{
		border-bottom: 2px solid #c7c7c7;
		padding-bottom: 5px;
	}
    .menu .dropdown {
    position: relative;
    display: inline-block;
    }
    .menu .dropdown-content {
        display: none; /* Ocultar menú inicialmente */
        position: absolute;
        background-color: black; 
        opacity: 100%;
        min-width: 200px; 
        box-shadow: 0px 8px 16px rgba(0,0,0,0.2); /* Sombra */
        z-index: 1;
        margin-top: 0px;
    }
    .menu .dropdown-content a {
        color: white; 
        font-size: 15px;
        padding: 12px 16px;
        text-decoration: none;
        display: block; 
        transition: background-color 0.3s ease;
    }

    .menu .dropdown-content a:hover {
        background-color: #525252; 
    }
    .menu .dropdown:hover .dropdown-content {
        display: block;
    }
    /*Distinguir pestañas*/
    .menu a.active {
        border-bottom: 2px solid #f0f0f0; 
        font-weight: bold; 
        color: #484848; 
    }
/* FIN DE ENCABEZADO */


/* MENÚ LATERAL */
	#btn-menu{
		display: none;
        z-index: 2;
	}
	.container-menu{
		position: fixed;
		background: rgba(0,0,0,0.5);
		width: 100%;
		height: 100vh;
		top: 0;left: 0;
		transition: all 500ms ease;
		opacity: 0;
		visibility: hidden;
        z-index: 3;
	}
	#btn-menu:checked ~ .container-menu{
		opacity: 1;
		visibility: visible;
	}
	.cont-menu{
		width: 100%;
		max-width: 250px;
		background: #1c1c1c;
		height: 100vh;
		position: relative;
		transition: all 500ms ease;
		transform: translateX(-100%);
	}
	#btn-menu:checked ~ .container-menu .cont-menu{
		transform: translateX(0%);
	}
	.cont-menu nav{
		transform: translateY(15%);
	}
	.cont-menu nav a{
		display: block;
		text-decoration: none;
		padding: 20px;
		color: #c7c7c7;
		border-left: 5px solid transparent;
		transition: all 400ms ease;
	}
	.cont-menu nav a:hover{
		border-left: 5px solid #c7c7c7;
		background: #1f1f1f;
	}
	.cont-menu label{
		position: absolute;
		right: 5px;
		top: 10px;
		color: #fff;
		cursor: pointer;
		font-size: 22px;
	}
/* FIN DE MENÚ LATERAL */

/*BARRA REDES SOCIALES*/
.barra-redes {
    position: fixed;
    left: 0; /* La barra se fija al lado derecho */
    top: 255px; /* Se posiciona en el centro vertical */
    transform: translateY(-50%); /* Ajusta para centrarla bien */
    width: 40px; /* Ajusta el ancho */
    border-radius: 20px 0 0 20px; /* Bordes redondeados en el lado izquierdo */
    z-index: 2;
}
.barra-redes table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    border: none;
}
.barra-redes td {
    border: none;
    height: 10px; /* Ajusta la altura de cada celda */
    padding: 0;
}
.barra-redes img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease; /* Transición suave */
    
}
.barra-redes img:hover {
    transform: scale(1.2); /* Aumenta el tamaño un 20% */
    filter: brightness(1.8); /* Hace la imagen más clara */
}
/*FIN BARRRA REDES SOCIALES*/

/* SECCIONES DE INFORMACIÓN */

/* PÁGINA: INICIO */
    /* Sección: Qué es */
    .info-container{
        margin-top: 0px;
        display: flex;
        width: 100%;
        height: 440px;
        background-color: #e2e2e2;
        text-align: left;

        flex-direction: row; 
        justify-content: space-between; 
        padding: 30px;
    }
    .info-container p{
        padding-left: 60px;
        margin-left: 0px;   
    }
    .info-container h1{
        padding-left: 60px;
    }
    .info-container2 p{
        padding-left: 60px !important;
        margin-left: 0px !important;   
    }
    .info-container2 h1{
        padding-left: 60px;
    }

    .cont-info{
        width: 100%; 
        height: 410px; 
        text-align: center;
        display: flex; 
        flex-direction: column; 
        justify-content: center; 
        padding-left: 30px; 
        padding-right: 30px;
        padding-top: 0px;
    }
    .cont-info h1{
        width: 100%;
        padding: 10px 0; 
        font-size: 45px;
    }
    .cont-info h2{
            padding: 0; 
            font-size: 15px;
    }
    .cont-info p {
        width: 100%;
        height: auto;
        text-align: center;
        font-size: 19px;
        font-family: sans-serif;
        color: #686868;
        line-height: 29px;
    }
    .cont-info button, .cont-info-contactanos button{
        width: 160px; /* Ancho botón */
        height: 40px; /* Altura  botón */
        margin-top: 20px; /* Espacio entre el párrafo y el botón */
        padding: 10px; 
        background-color: #706f6f; 
        color: white; 
        border: none; 
        border-radius: 5px; 
        cursor: pointer; 
        font-size: 14.5px; 
        align-self: center;
    }
    .cont-info button:hover {
        background-color: #4a4a4a; 
        transition: color 0.1s ease !important; /* Efecto de transición suave */
    }
    .img1{
        width: 30%; 
        display: flex;
        justify-content: center; 
        align-items: center; 
    }
    .img1 img {
        max-width: 100%; 
        height: auto;
    }

    /* Sección: Servicios */
    .titulo{
        padding: 30px;
        text-align: center;
        font-size: 25px; 
    }
    .titulo h1 {
        padding-top: 20px;
        font-size: 42px;
        color: white;
        margin: 0;   
    }
    /* Definición de la animación */
    .serv-container{
        display: flex;
        width: 100%;
        height: 471px;
        text-align: left;
        flex-direction: row; /* Alineación vertical*/
        justify-content: space-between; /* Centrar los elementos verticalmente */
        padding-top: 5px;
        padding-left: 90px;
        padding-right: 90px;

    }
    .servicios-section {
        display: block;
        background-image: url('Imagenes/Wservicio_background3.webp'); 
        background-size: cover; 
        background-position: center; 
        background-repeat: no-repeat;
        background-color: #2d2d2d; 
    }
    .serv-container h2{
        width: 100%;
        padding: 10px 0; 
        font-size: 22px;
        font-family: sans-serif;
        color: #eeeeee;
    }
    .serv-container p{
        width: 100%;
        height: auto;
        text-align: center;
        font-size: 16px;
        font-family: sans-serif;
        color: #c4c4c4;
        line-height: 25px;
    }
    .serv-container .serv-info1,
    .serv-container .serv-info2,
    .serv-container .serv-info3 {
        width: 31%;
        height: 410px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 30px;
        background-color: #252525;
        border-radius: 35px;     
    }
    .serv-info1 .figura h2, .serv-info2 .figura h2, .serv-info3 .figura h2{
        display: none;
    }
    .serv-container button{
        width: 65%; 
        padding: 10px ; 
        align-self: center; 
        background-color: #706f6f;
        color: white;
        border: none;
        border-radius: 10px; /* Bordes redondeados */
        cursor: pointer;
        font-size: 13px; 
        margin-top: 20px;
    }
    .serv-container button:hover {
        background-color: #161616; 
        transition: color 0.1s ease !important; 
    }
    
    /* Sección: Diferenciador */
    .titulo2{
        padding: 25px;
        text-align: center;
        background-color: #e2e2e2;
        font-size: 20px;
        overflow: hidden; 
    }
    .titulo2 h2{
        font-size: 22px;
        font-family: sans-serif;
    }
    .titulo2 a:link, a:visited {
        color: black;
        text-decoration: none; /* Sin subrayado por defecto */
    }   
    .titulo2 h1 {
        padding-top: 5px;
        font-size: 42px;
        color: black;
        margin: 0;
        opacity: 0; 
    }
    .info-container2{;
        padding-top: 10px;
        display: flex;
        width: 100%;
        height: 235px;
        background-color: #e2e2e2;
        text-align: left;
        flex-direction: row; /* Alineación vertical*/
        justify-content: space-between;
        padding: 30px; 
    }
    .cont-info2{
        width: 100%; 
        height: 110px; 
        text-align: center;
        display: flex; 
        flex-direction: column; 
        justify-content: center; 
        padding-left: 30px;
        padding-right: 30px;
        padding-top: 55px;
    }
    .cont-info2 h1{
        width: 100%;
        padding: 10px 0; 
        font-size: 55px;
    }
    .cont-info2 p {
        width: 100%;
        height: auto;
        text-align: center;
        font-size: 18px;
        font-family: sans-serif;
        color: #686868;
        line-height: 29px;
        
        text-align: center;
        align-content: center;
        align-items: center;
        align-self: center;
    }
    .distint-content{
        display: flex;
        width: 100%;
        height: 240px;
        background-color: #e2e2e2;
        justify-content: center;
        padding-left: 20px;
        padding-left: 20px;
    }
    .distint-content .dist-info {
        width: 80%;
        height: 210px;
        display: flex;
        flex-direction: row; 
        justify-content: space-between; /* Espacio entre imagen y texto */
        align-items: center; 
        padding: 30px;
        background-color: #4a4a4a;
        border-radius: 35px;
        box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3); /* Sombra */
        color: white;
    }
    .grafica {
        flex: 0 0 20%; /* Imagen -> 20% */
        display: flex;
        justify-content: center; 
    }
    .grafica img {
        max-width: 90%; 
        height: auto;
        border-radius: 20px; 
    }
    .texto {
        flex: 1; 
        padding-left: 80px; /* Espacio entre imagen y texto */
        text-align: left;
    }
    .texto h2 {
        font-size: 35px;
        font-family: sans-serif;
        color: #eeeeee;
    }
    
    .texto p {
        font-size: 21px;
        font-family: sans-serif;
        color: #c4c4c4;
        line-height: 25px;
        text-align: left;     
    }
    .titulo2 h2 a{
        color: black;
    }
    .titulo2 a:hover {
        color: #a5a5a5; 
        transition: color 0.1s ease; /* Efecto de transición suave */
    }
    .titulo2 button{
        width: 15%; 
        padding: 10px; 
        align-self: center; 
        background-color: #706f6f;
        color: white;
        border: none;
        border-radius: 10px; /* Bordes redondeados */
        cursor: pointer;
        font-size: 13px; 
        margin-top: 20px;
    }
    button:hover {
        background-color: #161616; 
        opacity: 75%;
        transition: color 0.1s ease !important; /* Efecto de transición suave */
    }
    button h3 a:link, a:visited {
        color: white; 
        text-decoration: none; /* Sin subrayado por defecto */
    }
    button h3 a:hover {
        color: white; 
    }

    /* Sección: Clientes */
    .client-container {
        width: 100%;
        height: auto;
        display: flex;
        align-items: center; /* Alinear verticalmente */
        margin-bottom: 0px;
        padding-bottom: 0px;
    }
    .client-texto {
        max-width: 150%;
        flex: 6; /* El texto ocupará un espacio proporcional mayor que las imágenes */
        text-align: left;
        font-family: sans-serif;
    }
        /*Ocultar*/
        .client-texto2{
            display: none !important;
        }
    .client-texto h1 {
        padding-top: 10px;
        padding-left: 110px;
        font-size: 42px;
        color: black;
        margin: 0;  
    }
    .client-texto p {
        padding-left: 110px;
        font-size: 17px;
        font-family: sans-serif;
        color: gray;
    }
    .client-logo {
        flex: 1; /* Las imágenes ocuparán el mismo espacio */
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .client-logo img {
        width: 100%; /* Las imágenes ocuparán el 100% del espacio de su contenedor */
        height: 100%;
        object-fit: contain; 
        max-height: 100%; 
    }
/* FIN PÁGINA: INICIO */

/* PÁGINA: SERVICIOS*/
    /* Sección: Video */
    .muestra{
        height: 726px;
        display: block;
        background-clip: url('Imagenes/video_muestra2.mp4'); 
        background-size: cover; 
        background-position: center; 
        background-repeat: no-repeat; 
        background-color: black; /* Color de fondo provisional */
        z-index:1;
    }
    .muestra video{
        padding: 0px; 
        width: 100%;
        z-index: 1;
    }
    
    /* Sección: Conoce más */
    .info-container3 h1{
        padding-left: 60px !important;
    }
    .info-container3 p{
        padding-left: 60px;
    }
    .info-container3{
        background-color: #e2e2e2 !important;
    }

    /*Sección: Contabilidad y Análisis financiero*/
    .info-left, .info-left2 {
        display: flex;
        width: 100%;
        height: 381px;
        background-color: #2d2d2d;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        padding-left: 70px;
        padding-right: 10px;
    }
    .cont-info-left {
        width: 100%;
        height: auto;
        z-index: 1;
        text-align: left;
        justify-content: space-between;
        align-items: center;
    }
    .texto-left {
        margin-top: 0;
        padding-top: 0;
        width: 80%;
        text-align: left;
        margin-left: 20px;
    }
    .cont-info-left h1 {
        margin: 0;
        font-size: 53px;
        color: white;
    }
    .cont-info-left p {
        text-align: left;
        font-size: 17px;
        font-family: sans-serif;
        color: #cacaca;
        line-height: 29px;
        margin-bottom: 20px;
    }
    .info-left .cont-info-left button, .info-left2 .cont-info-left button {
        width: 200px;
        padding: 10px 40px;
        align-self: center;
        background-color: #706f6f;
        color: white;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        font-size: 13px;
        margin-top: 20px;
    }
    .info-left .cont-info-left button:hover, .info-left2 .cont-info-left button:hover {
        background-color: #161616;
    }
    .img-left {
        width: 30%;
        text-align: right;
    }
    .img-left img {
        width: 90%;
        height: auto;
        object-fit: cover;
        border-radius: 10px;
    }

    /*Sección: Fiscal*/
    .info-right{;
        display: flex;
        width: 100%;
        height: 381px;
        background-color: #e2e2e2;
        justify-content: space-between; 
        align-items: center; 
        text-align: right;
        padding-left: 10px; 
        padding-right: 70px;
    }
    .cont-info-right{
        width: 100%; 
        height: auto; 
        z-index: 1;
        text-align: right;
        justify-content: space-between;
        align-items: center;    
    }
    .texto-right{
        margin-top: 0px;
        padding-top: 0px;
        width: 80%;
        text-align: right;
    }
    .cont-info-right h1{
        margin: 0;
        font-size: 53px;
        color: black;
    }
    .cont-info-right p {
        text-align: right;
        font-size: 17px;
        font-family: sans-serif;
        color: #686868;
        line-height: 29px;
        margin-bottom: 20px; 
    }
   
    .info-right .cont-info-right button{
        width: 200px; 
        padding: 10px 40px; 
        align-self: center; 
        background-color: #706f6f;
        color: white;
        border: none;
        border-radius: 10px; /* Bordes redondeados */
        cursor: pointer;
        font-size: 13px; 
        margin-top: 5px;
    }
    .info-right .cont-info-right button:hover {
        background-color: #161616; 
    }
    .img-right{
        width: 30%; 
        text-align: left;
    }
    .img-right img {
        width: 90%;
        height: auto;
        object-fit: cover;
        border-radius: 10px;
    }
/* FIN PÁGINA: SERVICIOS */


    /* SUBPÁGINAS: CONTABILIDAD, CUM FISCAL Y REP FINANCIERO */
        .info-container-contabilidad{
            display: block;
            background-image: url('Imagenes/fondo_conta.jpg'); 
            background-size: cover; 
            background-position: center; 
            background-repeat: no-repeat; 
            background-color: #2d2d2d;
        }
        .cont-info-fondo h1{
            margin-top: 95px;
            width: 100%;
            padding: 10px 0; 
            font-size: 60px;
            color: #e2e2e2;
            text-align: center;
        }
        .cont-info-fondo p {
            width: 100%;
            height: auto;
            text-align: center;
            font-size: 19px;
            font-family: sans-serif;
            color: #686868;
            line-height: 29px;
        }
        .info-container-fiscal{
            display: block;
            background-image: url('Imagenes/fondo_fiscal.jpg'); 
            background-size: cover; 
            background-position: center; 
            background-repeat: no-repeat; 
            background-color: #2d2d2d; 
            }
        .info-container-financiero{
                display: block;
                background-image: url('Imagenes/fondo_finan.jpg'); 
                background-size: cover; 
                background-position: center; 
                background-repeat: no-repeat; 
                background-color: #2d2d2d; 
            }

        /* Sección: Acordeón */
        .contenedor-acordeon {
            font-family: sans-serif;
            width: 100%;
            max-width: 1000px;
            margin: auto;
            margin-top: 30px;
        }
        .contenedor-acordeon h1{
            text-align: center;
            font-size: 50px;
            margin-bottom: 40px;
        }
        .contenedor-acordeon p{
            font-family: sans-serif;
            text-align: left;
            font-size: 18px;
            margin-bottom: 35px;
        }
        .acordeon {
            background: #fff;
        }
        .acordeon label {
            display: flex;
            justify-content: space-between; /* Imagen izquierda, texto derecha */
            align-items: center;
            padding: 20px;
            font-size: 20px;
            background: #2d2d2d;
            color: #fff;
            cursor: pointer;
            margin-bottom: 2px;
            transition: all 300ms ease;
        }
        .acordeon label:hover {
            background: #3c3c3c;
        }
        .acordeon .icono {
            height: 25px;
            transition: all 300ms ease;
        }
        .acordeon .contenido-acordeon {
            padding: 0px;
            margin: 0px 20px;
            max-height: 0px;
            overflow: hidden;
            transition: all 300ms ease;
            font-family: sans-serif !important;
        }
        .acordeon .contenido-acordeon p{
            font-family: sans-serif !important;
            font-size: 18px;
        }
        .acordeon .contenido-acordeon ul{
            font-family: sans-serif !important;
            font-size: 18px;
            list-style-type: disc; 
            margin-left: 20px; 
        }
        .acordeon .contenido-acordeon ul li {
            margin-bottom: 18px; /* Espacio entre cada viñeta */
            font-family: sans-serif !important;
        }
        .btn-acordeon:checked ~ .contenido-acordeon {
            max-height: 900px;
            padding: 15px 0px;
        }
        /* Oculta el ícono 'abajo3' al abrir el acordeón y rota el ícono */
        .btn-acordeon:checked + label .icono {
            transform: rotate(180deg); /* Rota el ícono para que apunte hacia arriba */
        }
        .btn-acordeon {
            display: none;
        }
        /* Fin Sección: Acordeón */

        /* Sección: Esquema para contactar */
        .contactainer{
            display: flex;
            width: 100%;
            height: 471px;
            text-align: left;
            flex-direction: row; 
            justify-content: space-between; 
            padding-top: 5px;
            padding-left: 230px; 
            padding-right: 230px;
        }
        .contac-section {
            display: block; 
        }
        .contactainer h2{
            width: 100%;
            padding: 10px 0; 
            font-size: 22px;
            font-family: sans-serif;
            color: #eeeeee;
        }
        .contactainer h2:hover{
            color: #1e1e1e;
        }
        .contactainer p{
            width: 100%;
            height: auto;
            text-align: center;
            font-size: 16px;
            font-family: sans-serif;
            color: #c4c4c4;
            line-height: 25px;
        }
        .contactainer .contac-info{
            width: 23%;
            height: 410px;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: flex-start; 
            padding: 0; 
            background-color: #f7f7f7;
            border: 1px solid #2d2d2d;
            /*border-radius: 18px;*/  
        }
        .contac-info .cuadro img{
            width: 100%;
            height: 100%;
            object-fit: cover; 
            padding: 0;
            margin: 0;
        }
        .contac-info p {
            margin-top: 5px; 
            padding: 0 15px; 
            font-size: 16px;
            color: black;
        }
    /*FIN DE SUBPÁGINAS*/

/* PÁGINA: NOSOTROS */
    .nosotros-wrapper {
        display: flex;
        justify-content: center; 
        align-items: center;
        width: 100%;
        padding: 20px;
        gap: 40px;
    }
    .nosotros-content, .nosotros-content-right{
        margin-top:0;
        display: flex;
        flex-direction: column;
        width: 32%;
        height: auto;
        justify-content: center; 
        align-items: center;
    }
    .nos-info, .nos-info-r{
        width: 100%;
        height: 210px;
        display: flex;
        flex-direction: row; 
        justify-content: space-between; 
        align-items: center !important; 
        padding: 25px;
        border-radius: 5px;
        box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3); /* Sombra */
        color: white;
        margin-bottom: 50px;
        border: 2px solid #dadada;
    }      
    .grafica-n {
        flex: 0 0 15%; /* La imagen ocupará el x% del contenedor */
        display: flex;
        justify-content: center; 
    }
    .grafica-n img {
        max-width: 100%; 
        height: auto;
        border-radius: 20px;     
    }
    .texto-n {
        flex: 1; /* El texto ocupará el espacio restante */
        padding-left: 18px;
        text-align: left; 
    }
    .texto-n h2 {
        font-size: 19px;
        font-family: sans-serif;
        color: #464646;
    }
    .texto-n p {
        margin-top: 12px;
        font-size: 12.5px;
        font-family: sans-serif;
        color: #616161;
        line-height: 25px;
        text-align: left; 
    }

    /*Sección: Linea del tiempo*/
    .historia-t{ 
        color: #f6f6f6;
        background-color: black;
        font-size: 25px;
        text-align: center;
    }
    .historia{
        display: flex;
        justify-content: center; 
        align-items: center; 
        text-align: center; 
        width: 100%;
        background-color: black; 
        }
    .historia img{ 
        padding: 0px;
        width: 80%;
        z-index: 0;
        display: block; 
        margin: 0 auto; 
     }

    /* Sección: Conócenos -> inhabilitada por el momento */
    .conocenos{
        width: 100%
        height: auto;
        background: linear-gradient(45deg, #232323, #626262);
        padding-top: 30px;
    }
    .conocenos h2{
        font-family: sans-serif;
        font-size: 40px;
        text-align: center;
        color: #ededed;
    }
    .conocenos-wrapper {
        display: flex;
        justify-content: center; 
        align-items: center;
        width: 100%;
        padding: 20px;
        background: linear-gradient(45deg, #232323, #626262);
        padding-top: 70px;
        padding-bottom: 70px;
        gap: 40px;
        }
    .conocenos-content, .conocenos-content-right{
        margin-top:0;
        display: flex;
        flex-direction: column;
        width: 32%;
        height: auto;
        background-color: #e2e2e2;
        justify-content: center; 
        align-items: center;
        border-radius: 25px;
    }
    .cono-info, .cono-info-r{
        width: 100%;
        height: 210px;
        display: flex;
        flex-direction: row; 
        justify-content: space-between; 
        align-items: center !important; 
        padding: 15px;
        border-radius: 25px;
        box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1); /* Sombra */
        color: white;
        border: 2px solid #dadada;
    }      
    .grafica-c {
        flex: 0 0 50%; 
        display: flex;
        justify-content: left; 
    }
    .grafica-c img {
        padding-left: 20px;
        max-width: 90%; 
        height: auto;
        border-radius: 25px;
    }
    .texto-c {
        flex: 2; 
        padding-left: 10px; /* Espacio entre imagen y texto */
        text-align: left; 
    }
    .texto-c h2 {
        text-align: left;
        font-size: 25px;
        font-family: sans-serif;
        color: #464646;
    }
    .texto-c p {
        margin-top: 12px;
        font-size: 16px;
        font-family: sans-serif;
        color: #616161;
        line-height: 25px;
        text-align: left; 
    }

    /* PÁGINA: CONTACTANOS */
.info-container-contactanos2{
    height: 185px;
    background-color: #2d2d2d;
}
.cont-info-contactanos2{
    height: auto;
}
.cont-info-contactanos2 h1{
    color: white;
    font-size: 25px;
    text-align: center;
}

    .info-container-contactanos{
        margin-top: 0px;
        display: flex;
        width: 100%;
        height: 440px;
        background-color: #e2e2e2;
        text-align: left;
        flex-direction: row; 
        justify-content: space-between; /* Centrar los elementos verticalmente */
        padding: 30px; 
    }
    .cont-info-contactanos{
        width: 100%; 
        height: 410px; 
        text-align: center;
        display: flex; 
        flex-direction: column; 
        justify-content: center; 
        padding-left: 30px; 
        padding-right: 30px;
        padding-top: 0px;
    }
    .cont-info-contactanos h1{
        width: 100%;
        padding: 10px 0;
        font-size: 45px;
    }
    .cont-info-contactanos p {
        width: 100%;
        height: auto;
        text-align: center;
        font-size: 19px;
        font-family: sans-serif;
        color: #686868;
        line-height: 29px;
    }

    /* LOGO ANIMADO: WHATSAPP*/
    #whatsapp .wtsapp:focus {
        border: 0; outline: 0;
    }
    #whatsapp .wtsapp {
        position: fixed;
        transition: all .5s ease;
        background: #25d366;
        display: block;
        text-align: center;
        align-content: center;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
        border-radius: 50px;
        border-right: 0;
        color: #fff;
        font-weight: 700;
        font-size: 18px;
        bottom:10px;
        right:20px;
        border: 0;
        z-index: 999;
        width: 65px;
        height: 65px;
        line-height: 48px;
    }
    #whatsapp .wtsapp:before {
        content: "";
        position: absolute;
        z-index: -1;
        left: 50%;
        top: 50%;
        transform: translateX(-50%) translateY(-50%);
        display: block;
        width: 70px;
        height: 70px;
        background: #25d366;
        border-radius: 50%;
        -webkit-animation: pulse-border 1500ms ease-out infinite;
        animation: pulse-border 1500ms ease-out infinite;
    }
    @keyframes pulse-border {
        0 {
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
            opacity: 1;
        }
        100% {
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
            opacity: 0;
        }
    }
    #whatsapp .tooltip {
        display: none;
        position: absolute;
        bottom: 0px; /* Ajusta la posición */
        right: 70px; /* Alinea el texto a la derecha */
        background-color: #2d2d2d;
        color: white;
        padding: 5px;
        padding-left: 15px;
        padding-right: 15px;
        border-radius: 40px;
        font-family: sans-serif;
        font-size: 12px;
        white-space: nowrap;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        transition: opacity 0.3s;
    }
    #whatsapp .wtsapp:hover .tooltip {
        display: block;
        opacity: 80%;
        transition: color 0.1s ease !important; 
    }

/* SECCIÓN: FOOTER */
table{
    background-color: #2d2d2d;
    width: 100%;
    height: 150px;
}
table tr{
    width: 30%;
}

    .footer{
        width: 100%;
        height: 90px;
        position: fixed;
        top: 0;left: 0;
        background-color: #5b5b5b;
        margin-top: 0; 
        padding-top: 0;
    }
    .container-footer{
        margin-top: 0; 
        padding-top: 0;
        background-color: #2d2d2d;
        color: #c7c7c7;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 90px;
        z-index: 10;
        font-size: 13px;
        opacity: 100%;
    }
.container-footer h2{
    font-size: 16px;
}
    /*Footer visible*/
    body {
        margin-bottom: 10px; 
    }
    .container-footer .footer a:link, a:visited {
        color: #c7c7c7; 
        text-decoration: none; /* Sin subrayado por defecto */
    }
    .footer a:hover {
        color: #484848; 
    }
    .container-footer a {
        color: inherit;  /* Hereda el color del texto padre */
        text-decoration: none;  /* Opcional: Elimina el subrayado si no lo deseas */
    }
    .container-footer a:hover {
        color: #ffffff; /* Opcional: Cambia el color cuando pasas el mouse */
    }

    /*Terminos y condiciones de uso*/
        .info-container2 .fecha{
            margin-left: 0px;
        }
        .titulo2 h2.intro{
            font-size: 16px !important;
            text-align: left !important;
        }
        .titulo2 li{
            font-size: 18px;
            font-weight: bold;
            color: #2d2d2d;
            margin-left: 35px;
        }
        .titulo2 ol p{
            font-size: 15px;
            margin-left: 50px;
        }

/* Ajustes para pantallas pequeñas */
    @media (max-width: 768px) {
    
/*GENERAL*/
    /*Terminos y Condiciones de Uso*/
        .titulo2 h2.intro{
            margin-top: 60px;
            font-size: 13px !important;
            text-align: left !important;
        }
        .info-container2 .fecha{
            margin-left: 25px;
        }
        .titulo2 li{
            margin-top: 10px;
            font-size: 16px;
            font-weight: bold;
            color: #2d2d2d;
            margin-left: 35px;
        }
        .titulo2 ol p{
            font-size: 13px;
            margin-left: 50px;
        }      
        
    .container-footer{
        height: 90px !important;
        z-index: 0 !important;
    }
    .container-footer h2{
        margin-left: 0px !important;
        padding-left: 0px !important;
        padding-right: 65px !important;
        font-size: 14px;
        text-align: left;
    }
    .container-footer p{
        margin-left: 0px !important;
        padding-left: 0px !important;        
        padding-right: 65px !important;
        font-size: 10px; 
        text-align: left;
    }
        
    .cont-menu{
        max-width: 150px;
        max-height: 100%;
        z-index: 10;
    }
    
    /*Menú*/
    #btn-menu {
        display: none;
        z-index: 9;
    }
    /* Ocultar el menú de navegación en pantallas pequeñas */
    .menu {
        display: none; /* Oculta el menú */
        opacity: 0%;
    }
    /* Mostrar el menú lateral */
    .btn-menu {
        display: block; 
    }
    .container-menu {
        position: fixed;
        background: rgba(0,0,0,0.5);
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        transition: all 500ms ease;
        opacity: 0;
        visibility: hidden;
        z-index: 3;
    }
    container-menu{
        display: none;
        height: 90px;
        z-index: 3;
    }
    .logo-img {
        height: 49px; 
        margin-left: 5px; 
    }
    #btn-menu:checked ~ .container-menu {
        opacity: 1;
        visibility: visible;
    }
    .cont-menu {
        width: 100%;
        max-width: 160px;
        background: #1c1c1c;
        height: 100vh;
        position: fixed; /* Cambiado a 'fixed' para que el menú quede fijo en la pantalla */
        top: 0; /* Posiciona el menú en la parte superior de la pantalla */
        left: 0; /* Posiciona el menú en el lado izquierdo */
        transition: all 500ms ease;
        transform: translateX(-100%);
    }
    #btn-menu:checked ~ .container-menu .cont-menu {
        transform: translateX(0%);
    }
    .cont-menu nav {
        transform: translateY(15%);
    }
    .cont-menu nav a {
        display: block;
        text-decoration: none;
        padding: 20px;
        color: #c7c7c7;
        border-left: 5px solid transparent;
        transition: all 400ms ease;
    }
    .cont-menu nav a:hover {
        border-left: 5px solid #c7c7c7;
        background: #1f1f1f;
    }
    .cont-menu label {
        position: absolute;
        right: 5px;
        top: 10px;
        color: #fff;
        cursor: pointer;
        font-size: 22px;
    }
    
    /* Whatsapp */
    #whatsapp .wtsapp:focus {
        border: 0; 
        outline: 0;
    }
    #whatsapp .wtsapp {
        bottom:15px;
        right:15px;
        width: 55px;
        height: 55px;
    }
    #whatsapp .wtsapp:before {
        width: 60px;
        height: 60px;
        -webkit-animation: pulse-border 1500ms ease-out infinite;
        animation: pulse-border 1500ms ease-out infinite;
    }
    @keyframes pulse-border {
        0 {
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
            opacity: 1;
        }
        100% {
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
            opacity: 0;
        }
    }
/*BARRA REDES SOCIALES*/
.barra-redes {
    background-color: transparent !important; /* Elimina el fondo gris */
    width: auto; /* Ajusta el ancho al contenido */
    display: flex; /* Asegura que los elementos se ajusten sin exceder el tamaño */
    flex-direction: column; /* Acomoda las imágenes en columna */
    align-items: center; /* Centra los iconos */
    top: 400px; /* Se posiciona en el centro vertical */
    width: 25px !important;    
    z-index: 2;
}
.barra-redes table {
    background-color: transparent !important; /* Asegura que la tabla no tenga fondo */
    table-layout: fixed;
}
.barra-redes table tr{
    height: 5px;
}
.barra-redes img {
    width: 114%;
    height: 114%;
    object-fit: contain;
}

/*FIN BARRRA REDES SOCIALES*/
        
/*FIN GENERAL*/

/*INICIO*/
    /*Videos slider*/
    .slide-container .slides{
        display: block;
    }
    .slides video {
        margin-top: 94px; 
        height: 100%; 
        width: 100%; 
    }
    .slide-container span.next, 
    .slide-container span.prev {
        margin-left: -16px;
        margin-right: -16px;
        font-size: 20px;
        padding: 9px; 
        transform: translateY(-500%); /* Centrar el botón */
        
        margin-top: -30px;
    }
    .slide-container .dotsContainer .dot {
        display: none;
        width: 12px; 
        height: 12px; 
        transform: translateY(-3100%); /* Centrar el botón */
        top: 95%; /* Mueve puntos más cerca del borde inferior */
    }
        .span.next, .span.prev{
            margin-bottom: 8000px;
        }
    
    /*Fin Videos Slider*/
        
    /*Qué es Globo Services*/
    info-container{
        background-color: #2d2d2d;
    }
    .info-container p{
        padding-left: 15px;
    }    
    .cont-info{
        margin-top: -455px; 
        z-index: 0;
        font-size: 35;
        padding-left: 5px;
        padding-right: 5px;
    }    
    .cont-info h1{
        width: 100%;
        padding: 5px 0; 
        font-size: 30px;
        padding-left: 10px;
        padding-right: 11px;
    }
    .cont-info h2{
        padding: 0; 
        font-size: 12px;
    }
    .cont-info p {
        align-self: center;
        font-size: 13px;
        color: #686868;
        line-height: 26px;
        margin-left: 10px;
        margin-right: 10px;
    }
    .cont-info button{
        width: 130px; /* Ancho adecuado para el botón */
        height: 30px; /* Altura adecuada para el botón */
        margin-top: 0px; /* Espacio entre el párrafo y el botón */
        padding: 10px; /* Espaciado interno del botón */
        background-color: #706f6f; /* Color de fondo del botón */
        color: white; /* Color del texto del botón */
        border: none; /* Sin borde */
        border-radius: 5px; /* Bordes redondeados */
        cursor: pointer; /* Cambiar el cursor al pasar por encima */
        font-size: 12px; /* Tamaño de fuente del texto */
        align-self: center;
    }
    .cont-info button:hover {
        background-color: #4a4a4a; /* Color al pasar el mouse */
    }
    /*Fin Qué es Globo Services*/
        
    /*Servicios*/
    .titulo{
        margin-top: -430px; /* Ajusta el valor según lo que necesites */ 
        padding: 20px;
    }
    .titulo h1 {
        padding-top: 15px;
        font-size: 37px;
        color: white;
        margin: 0;   
    }
    .serv-container{
        display: block;
        width: 100%;
        padding-left: 38px;
        padding-right: 38px;
    }
    .servicios-section{
        height: auto; /* Deja que la altura se ajuste al contenido */
        min-height: 100vh; /* Asegura que al menos ocupe el 100% de la altura de la pantalla */
        background-image: url('Imagenes/servicio_background3.jpg'); /* Cambia el nombre por el de tu imagen */
        background-repeat: no-repeat; /* No repetirá la imagen */        
    }
    .serv-container .serv-info1, .serv-container .serv-info2, .serv-container .serv-info3{
        display: block;
        align-items: center;
        width: 100%;
        height: 190px;
        padding: 10px;
        margin-bottom: 20px;
    }
    .serv-container h2{
        font-size: 17px;
        display: flex;
    }   
    .serv-container .serv-info1, .serv-container .serv-info2, .serv-container .serv-info3{
        display: flex;
        flex-direction: column; /* Los elementos dentro se organizan verticalmente */
        align-items: center;
        border-radius: 25px;
    }
    .serv-info1 .figura, .serv-info2 .figura, .serv-info3 .figura{
        display: flex;
        align-items: center; /* Alinea la imagen y el texto verticalmente */
        margin-top: 8px;
        margin-left: 10px;
        margin-bottom: 5px; /* Espacio entre la figura y el párrafo */
    }
    .serv-info1 .figura img, .serv-info2 .figura img, .serv-info3 .figura img{
        width: 50px;
        height: auto;
        margin-right: 15px; /* Espacio entre la imagen y el título */
    }
        /*Mostrar el oculto*/
        .figura h2{
            display: flex!important;
            margin-top: 0;
            font-size: 18px;
        }
        /*Ocultar el visible*/
        .serv-info1 h2, .serv-info2 h2, .serv-info3 h2{
            display: none;
        }
    .serv-container p{
        margin-top: -15px;
        font-size: 12.2px;
        line-height: 20px;
    }
        .serv-container .serv-info3 p{
            width: 90%;
            font-size: 10.6px;
        }
    .serv-info1 button, .serv-info2 button{
        margin-top: -25px; /* Espacio entre el párrafo y el botón */
        width: 35%;
        height: 27px;
        font-size: 9px;
    }
    .serv-info3 button{
        margin-top: -15px; /* Espacio entre el párrafo y el botón */
        height: 27px;
        width: 35%;
        font-size: 9px;
    }
    /*Fin sesrvicios*/
    
    /*¿Por qué nosotros?*/
    .info-container2 p{
        padding-left: 10px !important;
        margin-left: 0px !important;   
    }
    .info-container2 h1{
        padding-left: 10px;
    }
    .cont-info2 h1{
        margin-top: 120px;
        font-size: 37px;
    }
    .cont-info2 p{
        font-size: 13px;
        line-height: 25px;
        width: 100%;
        text-align: center;
        padding-left: -90px !important;
    }
    .titulo2 h1{
        margin-top: 115px;
        font-size: 30px;
    }
    .distint-content{
        padding-left: 10px;
        padding-right: 10px;
    }
    .distint-content .dist-info{
        padding: 10px;
        border-radius: 25px;
    }
    .distint-content .dist-info h2{
        margin-top: 15px;
        font-size: 18px;
        width: 105%;
    }
    .distint-content .dist-info p{
        margin-top: -18px;
        font-size: 13px;
        line-height: 22px;
        margin-right: -5px;
    }
    .grafica {
        width: 100%;
        margin-left: 25px;
    }
    .grafica img {
        max-width: 230%; /* Para que la imagen no exceda su contenedor */
        height: auto;
        border-radius: 20px; /* Si quieres redondear un poco los bordes de la imagen */
    }
    .texto {
        padding-left: 40px; /* Espacio entre imagen y texto */
    }
        .dist-info .texto h2{
            font-size: 15px;
        }
        .dist-info .texto p{
            font-size: 12px;
            margin-right: 5px;
        }
    .titulo2 h2{
        font-size: 17px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .titulo2 button{
        font-size: 11px;
        width: 40%;
        text-align: center;
        align-content: center;
        align-items: center;
        align-self: center;
    }
    .titulo2 button h3{
        width: 100%;
        text-align: center;
        align-content: center;
        align-items: center;
        align-self: center;
    }
    /*Fin de ¿Por qué nosotros?
    
    /*Clientes*/
    .client-texto{
        margin-top: 20px;
    }
    .client-texto h1 {
        display: none;
        padding-left: 15px;
        padding-right: 15px;
    }
    .client-texto p{
        display: none;
    }
    .client-logo {
        margin-top: 0;
        flex: 90; /* Las imágenes ocuparán el mismo espacio */
        display: flex;
        justify-content: center;
        align-items: center;
    }
        /*Mostrar*/
        .client-texto2{
            display: block!important;
            padding: 20px;
            text-align: center;
        }
        .client-texto2 h1{
            padding-left: 10px;
            font-family: sans-serif;
            font-size: 20px;
        }
        .client-texto2 p{
            padding-left: 10px; 
            font-size: 10px;
            margin-top: -5px;
        }
    /*Fin de Clientes*/
/*FIN INICIO*/

/*SERVICIOS*/
    /*Conoce más*/
    .info-container3 h1{
        margin-top: 17px;
        padding-left: 50px !important;
        font-size: 27px;
    }
    .info-container3 p{
        margin-top: -8px;
        padding-left: 50px;
        padding-right: 30px;
    }    
        
    /*Video*/
    .muestra{
        margin-top: 90px;
        height: auto;
    }
    /*Fin video*/
    
    /*Información Servicios: left y right*/
        /*FONDOS*/
        .info-left{
            background-image: url(Imagenes/Wconta3.webp);
            background-size: cover;
            background-position: center;
        }
        
        .info-left2{
            background-image: url(Imagenes/Wfinan3.webp);
            background-size: cover;
            background-position: center;
        }
        
    .info-left, .info-left2{
        padding-left: 34px;
        padding-right: 0px;
    }
    .info-right{
        padding-right: 20px;
        padding-left: 37px;
    }
    .info-left h1, .info-left2 h1, .info-right h1{
        font-size: 30px;
    }
    .info-right h1{
        margin-top: 20px;
        width: 120%;
    }
    .info-left p, .info-left2 p{
        font-size: 14px;
        line-height: 22px;
        width: 100%;
    }
    .info-right p{
        font-size: 13px;
        line-height: 22px;
        width: 120%;
        margin-left: 0px;
    }
    .info-right .texto-right .cont-info-right button{
        width: 140px;
        padding: 10px;
        margin-right: -65px;
        font-size: 10px; 
        margin-top: -25px;
        text-align: center;
    }
    .info-left .cont-info-left button, .info-left2 .cont-info-left button{
        width: 140px; 
        padding: 10px ; 
        font-size: 10px; 
        margin-top: -10px;
    }
    .img-left{
        display: none;
    }
    .img-right{
        display: none;
    }
    /*Fin de Información: Servicios*/
/*FIN SERVICIOS*/

/*SUBPÁGINA: CONTABILIDAD*/
    /*Imagen con título*/
    .cont-info-fondo{
        height: 80%;
    }
    .info-container-contabilidad .cont-info-fondo h1, .info-container-fiscal .cont-info-fondo h1,  .info-container-financiero .cont-info-fondo h1{
        margin-top: 115px;
        font-size: 38px !important;
    }
    .cont-info-fondo p {
        display: none;
    }
    /*Fin imagen con fondo*/

    /*Acordeón con información*/
    .contenedor-acordeon h1{
        font-size: 30px;
    }
    .contenedor-acordeon p{
        padding-left: 30px;
        margin-left: 30px;
        font-size: 15px;
    }
    .contenedor-acordeon .acordeon{
        padding-left: 30px;
    }
    .acordeon p{
        padding-left: 0px;
    }
    .acordeon label{
        font-size: 17px;
        margin-left: 30px;
        margin-right: 30px;
    }
    .acordeon .contenido-acordeon{
        margin-left: 30px;
        margin-right: 30px;
    }
    .acordeon .contenido-acordeon ul,.acordeon .contenido-acordeon p {
        margin-left: 35px;
        margin-right: 35px;
        font-size: 15px;
    }
        .acordeon label img{
            padding-left: 5px;
        }
    /*Fin acordeón*/
        
    /*Esquema para contactar*/
    .contactainer{
        align-content: center !important;
        align-items: center !important;
        align-self: center !important;
        padding-bottom: 1685px;
    }
    .contac-section .titulo h1{
        margin-top: 365px;
        font-size: 22px;
        padding-left: 30px;
    }
    .contactainer {
        flex-direction: column; /* Cambia la dirección a columna en móviles */
        padding-left: 30px; /* Ajusta el padding para móviles */
        padding-right: 0px;
        width: auto;     
    }
    .contac-info {
        width: 70% !important; /* Cada contac-info ocupará el x% del ancho */
        margin-bottom: 25px; /* Añade espacio entre los elementos */
    }
    
/*PÁGINA: NOSOTROS¨*/
    /* Sección: Esquema 4x4 */
    .nosotros-wrapper{
        margin-top: 90px;
    }
    .nosotros-wrapper {
        flex-direction: column; /* Cambia la dirección de los contenedores principales a columna */
    }
    .nosotros-content{
        margin-bottom: -40px;
        padding-left: 30px;
    }
    .nosotros-content, .nosotros-content-right {
        width: 100%; /* Ancho completo en dispositivos móviles */
        padding-left: 30px;
    }
    .nos-info, .nos-info-r {
        flex-direction: column; /* Pone la imagen y el texto uno debajo del otro */
        align-items: flex-start; 
        height: 290px;
        margin-bottom: 29px;
    }
    .nos-info h2, .nos-info-r h2{
        font-size: 20px;
        text-align: center;
    }
    .nos-info p, .nos-info-r p{
        font-size: 13px;
        text-align: center;
        width: 100%;
    }
        .texto-n {
            padding-left: 0;
            text-align: center; 
        }
        .texto-n p {
            line-height: 23px;
            width: 100%;
            margin-left: 0;
            margin-right: 0;    
        }
    .grafica-n img {
        width: 20%;
        margin-bottom: 10px; /* Espacio entre la imagen y el texto en móvil */
        margin-right: 0; 
    }
    .conocenos-wrapper {
        flex-direction: column; /* Coloca los elementos uno debajo del otro */
        margin-top: -30px;
    }
    .conocenos h2{
        font-size: 30px;
    }
    .conocenos-content, .conocenos-content-right {
        width: 100%; 
    }
    .conocenos-content .cono-info .texto-c h2, .conocenos-content-right .cono-info-r .texto-c h2{
        width: 100%; 
        font-size: 19px;
    }
    .cono-info .grafica-c img{
        padding-left: -40px;
    }
    .texto-c {
        padding-left: -10; 
        text-align: center; 
        width: 100%; 
        margin: 0 auto; 
    }
    
    /* Sección: Línea del tiempo */
    .historia-t{ 
        color: #f6f6f6;
        background-color: black;
        font-size: 11px;
        text-align: center;
    }

/* PÁGINA: CONTÁCTANOS */
    .calendly-inline-widget{
        margin-top: 60px;
        padding-left: 33px;
    }    
    
    /* Sección: Texto */
    .info-container-contactanos{
        margin-top: 130px;
        display: flex;
        width: 100%;
        height: 300px;
    }
    .cont-info-contactanos{
        width: 100%; /* Ajusta el ancho del contenedor de información */
        height: 200px; /* Altura del contenedor de información */
    }
    .cont-info-contactanos h1{
        margin-top: 13px;
        width: 100%;
        padding: 10px 0; /* Ajuste del padding para mayor claridad */
        font-size: 37px;
    }
    .cont-info-contactanos p {
        font-size: 13px;
    }
          
}