/*@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@700&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&display=swap');

:root {
    --padding-container: 40px 0;
    --color-title: #E62121;
}

body {
    font-family: "Poppins", sans-serif;
    font-weight: 300, 400, 600;
    font-style: normal;
    margin: 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: var(--padding-container);
}

.hero {
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 800px;
    position: relative;
    display: grid;
    grid-template-rows: auto 1fr;
    color: rgb(0, 0, 0);
}

.hero::before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/claroempresa.png');
    background-size: cover;
    z-index: -1;
}

.nav {
    --padding-container: 0;
    height: auto;
    display: flex;
    align-items: center;
    padding: 10px 0;
    z-index: 1000;
}

.nav_logo {
    margin-right: 2em;
}

.logonav {
    height: 100px;
    width: 100px;
}

.nav_title {
    font-weight: 300;
    color: white;
}

.nav_items {
    list-style: none;
}

.nav_links {
    color: rgb(255, 255, 255);
    text-decoration: none;
    text-align: center;
    font-size: 1.2em;
}

.nav_link {
    margin-left: auto;
    padding: 0;
    display: flex;
    gap: 1.5em;
}

.nav_menu {
    display: none;
    cursor: pointer;
}

.nav_img {
    display: block;
    width: 30px;
}

.nav_close {
    display: none;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
}

.hero_container {
    max-width: 800px;
    --padding-container: 0;
    display: grid;
    grid-auto-rows: max-content;
    align-content: center;
    gap: 1em;
    padding-bottom: 100px;
    text-align: center;
}

.title__container {
    font-size: 5em;
    color: rgb(255, 255, 255);
}

.hero_paragraph {
    color: rgb(255, 255, 255);
    text-align: right;
    font-size: 20px;
}

.hero_text {
    margin-bottom: 240px;
}

.cta {
    display: inline-block;
    background-color: rgba(255, 0, 0, 0.599);
    justify-self: center;
    color: rgb(255, 255, 255);
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 30px;
}

@media (max-width: 768px) {
    .nav_link {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(41, 41, 42, 0.9);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.5em;
        padding: 2em;
        transition: transform 0.3s ease-in-out;
        transform: translateX(100%);
        z-index: 1000;
    }

    .nav_link .nav_items {
        display: none;
    }

    .nav_link.show-menu .nav_items {
        display: block;
    }

    .nav_link.show-menu {
        transform: translateX(0);
    }

    .nav {
        justify-content: space-between;
        /* Distribuye el espacio entre el logo y el icono */
    }

    .nav_menu {
        display: block;
        margin-right: 15px;
        /* Ajusta este valor según necesites */
    }

    .nav_close {
        display: none;
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 1001;
    }

    .nav_close.show-close {
        display: block;
    }
}

@media (min-width: 768px) {

    .nav_menu,
    .nav_close {
        display: none;
    }

    .nav_link {
        display: flex;
    }
}

/*  segundo navbar*/
.container-fluid {
    width: 100%;
    margin: 0;
    padding: 0;
}

.navbar {
    background-color: #000;
    height: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    z-index: 1000;
}

.navbar_logo {
    margin-right: 2em;
    margin-left: 50px;
}

.navbar_logo_img {
    height: 100px;
    width: 100px;
}

.navbar_menu {
    display: none;
    cursor: pointer;
}

.navbar_menu_img {
    display: block;
    width: 30px;
}

.navbar_list {
    margin-right: 50px;
    margin-left: auto;
    padding: 0;
    display: flex;
    gap: 1.5em;
}

.navbar_item {
    list-style: none;
}

.navbar_link {
    color: white;
    text-decoration: none;
    text-align: center;
    font-size: 1.2em;
}

.navbar_close {
    display: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .navbar_list {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(41, 41, 42, 0.9);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.5em;
        padding: 2em;
        transition: transform 0.3s ease-in-out;
        transform: translateX(100%);
        z-index: 1000;
    }

    .navbar_item {
        display: none;
    }

    .navbar_list.show-menu .navbar_item {
        display: block;
    }

    .navbar_list.show-menu {
        transform: translateX(0);
    }

    .navbar_menu {
        display: block;
        margin-left: auto;
        margin-right: 15px;
    }

    .navbar_close {
        display: none;
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 1001;
    }

    .navbar_close.show-close {
        display: block;
    }
}

@media (min-width: 769px) {

    .navbar_menu,
    .navbar_close {
        display: none;
    }

    .navbar_list {
        display: flex;
    }
}



/*  about*/

.about {
    text-align: center;
}

.about_main {
    padding-top: 30px;
    display: grid;
    width: 90%;
    margin: 0 auto;
    gap: 1em;
    overflow: hidden;
    grid-template-columns: repeat(auto-fit, minmax(260px, auto));
}

.subtitulo {
    color: var(--color-title);
    font-size: 2rem;
    margin-bottom: 25px;
}

.about_paragraph {
    line-height: 1.7;
}

.about_icons1 {
    display: grid;
    gap: 0.75em;
    justify-items: center;
    width: 280px;
    overflow: hidden;
    margin: 0 auto;
}

.about_icons2 {
    display: grid;
    gap: 0.75em;
    justify-items: center;
    width: 280px;
    overflow: hidden;
    margin: 0 auto;
}

.about_icons3 {
    display: grid;
    gap: 0.75em;
    justify-items: center;
    width: 280px;
    overflow: hidden;
    margin: 0 auto;
    margin-bottom: 95px;

}

.about_title {
    font-size: 2rem;
}

/* Responsive hero container y about */
@media (max-width: 768px) {
    .hero_container {
        max-width: 100%;
        padding-bottom: 50px;
    }

    .title__container {
        font-size: 3em;
    }

    .hero_paragraph {
        font-size: 16px;
        text-align: center;
    }

    .hero_text {
        margin-bottom: 120px;
    }

    .cta {
        padding: 15px 25px;
        font-size: 1em;
    }

    .about_main {
        grid-template-columns: 1fr;
        gap: 1.5em;
    }

    .subtitulo {
        font-size: 1.5rem;
    }

    .about_title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .title__container {
        font-size: 2em;
    }

    .hero_paragraph {
        font-size: 14px;
    }

    .cta {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .subtitulo {
        font-size: 1.2rem;
    }

    .about_title {
        font-size: 1.2rem;
    }
}

/* historia */

.history {
    background-color: #e5e5f7;
    background-image: radial-gradient(#ffffff 0.5px, transparent 0.5px), radial-gradient(#ff0404 0.5px, #000000 0.5px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    overflow: hidden;

}

.history_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em;
    align-items: center;
}

.logoclaro {
    margin-bottom: 8px;
}

.history_picture {
    max-width: 500px;
    margin-left: 35px;

}

.history_paragraph {
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 15px;
    margin-right: 15px;
    color: #ffffff;
}

.historia_img {
    width: 100%;
    display: block;
}

/* Responsive Historia */
@media (max-width: 768px) {
    .history_container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .history_picture {
        margin: 0 auto;
        max-width: 100%;
    }

    .history_paragraph {
        margin-right: 0;
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .history_paragraph {
        font-size: 0.9em;
        padding: 0 10px;
    }

    .history_picture {
        margin-left: 0;
    }
}

/*Funcion del fondo transparente que se mueve*/
.servicios {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.7)),
        url(/images/serviciosnombre.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    margin-top: 10px;


}

/*Funcion del fondo transparente que se mueve*/
.servicios {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(/images/serviciosnombre.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    margin-top: 10px;
}

.servicios-content {
    text-align: center;
}

.servicios-content h2 {
    font-size: 55px;
    line-height: 70px;
    color: #F9FAFC;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.servicios-content p {
    font-size: 16px;
    color: #C5C5C5;
    margin-bottom: 50px;
}

.servicios-group {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.servicios-1 {
    flex: 1 1 calc(20% - 10px);
    margin: 5px;
}

.servicios-1 img {
    width: 100%;
    height: auto;
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.servicios-1 img.show {
    opacity: 1;
    transform: translateY(0);
}

.servicios-1 h3 {
    color: #EACCB3;
    font-size: 18px;
}

@media (max-width: 768px) {
    .servicios-1 img {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .servicios-group {
        flex-direction: column;
        align-items: center;
    }

    .servicios-1 img {
        width: 100%;
    }
}





/*Contenido Mapa*/
.map-container {
    position: relative;
    width: 100%;
    height: 60vh;
}

iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.info-box {
    position: absolute;
    top: 30%;
    left: 10%;
    background-color: #e62121;
    color: white;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 300px;
}

/* Responsive MAPA */
@media (max-width: 768px) {
    .map-container {
        height: 50vh;
    }

    .info-box {
        top: 25%;
        left: 5%;
        padding: 20px;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .map-container {
        height: 40vh;
    }

    .info-box {
        top: 20%;
        left: 5%;
        padding: 15px;
        max-width: 200px;
    }
}

/*FOOTER ANIMADO*/
.animated-footer {

    position: relative;
    background-color: #000000;
    color: #fff;

    overflow: hidden;
    align-items: center;
    justify-content: center;
    /* Centra horizontalmente el contenido */
}

.footer-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    /* Asegura que el contenedor ocupe el 100% del ancho */

    padding: 25px 50px;
    /* Padding horizontal para el contenedor */
}

.footer-content,
.footer-trabaja2 {
    max-width: 30%;
    /* Asegura que cada sección ocupe hasta el 30% del ancho disponible */
    text-align: center;
    /* Centra el texto en cada sección */
}

.footer-trabaja {
    max-width: 30%;
    /* Asegura que cada sección ocupe hasta el 30% del ancho disponible */
    text-align: center;
    /* Centra el texto en cada sección */
    padding-bottom: 80px;
}

.footer-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-description {
    font-size: 16px;
    margin: 5px 0;
}

.footer-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    vertical-align: middle;
}

.logoclaro {
    max-width: 200px;
    margin-top: 10px;

}

.logoclaro1 {
    max-width: 80px;
    margin-left: 30px;
}

.watermark-images {
    display: flex;
    justify-content: center;
}

.watermark {
    width: 45px;
    /* Tamaño inicial de las marcas de agua */
    height: auto;

}

.cubes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cube {
    position: absolute;
    width: 10px;
    height: 10px;
    border: solid 1px #ff0000;
    transform-origin: top left;
    transform: scale(0) rotate(0deg) translate(-50%, -50%);
    animation: cube 12s ease-in forwards infinite;
}

.cube:nth-child(2n) {
    border-color: #9d0000;
}

.cube:nth-child(2) {
    animation-delay: 2s;
    left: 25vw;
    top: 40vh;
}

.cube:nth-child(3) {
    animation-delay: 4s;
    left: 75vw;
    top: 50vh;
}

.cube:nth-child(4) {
    animation-delay: 6s;
    left: 90vw;
    top: 10vh;
}

.cube:nth-child(5) {
    animation-delay: 8s;
    left: 10vw;
    top: 85vh;
}

.cube:nth-child(6) {
    animation-delay: 10s;
    left: 50vw;
    top: 10vh;
}

@keyframes cube {
    from {
        transform: scale(0) rotate(0deg) translate(-50%, -50%);
        opacity: 1;
    }

    to {
        transform: scale(20) rotate(960deg) translate(-50%, -50%);
        opacity: 0;
    }
}

/* Responsive FOOTER */
@media (max-width: 1024px) {
    .footer-section {
        flex-direction: column;
        text-align: center;
    }

    .footer-content,
    .footer-trabaja {
        max-width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .footer-title {
        font-size: 20px;
    }

    .footer-description {
        font-size: 14px;
    }

    .footer-icon {
        width: 20px;
        height: 20px;
    }

    .logoclaro {
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .footer-title {
        font-size: 18px;
    }

    .footer-description {
        font-size: 12px;
    }

    .footer-icon {
        width: 18px;
        height: 18px;
    }

    .logoclaro {
        max-width: 100px;
    }

    .animated-footer {
        padding: 20px;
    }
}

/*NOSOTROS */


.nav_nosotros {
    --padding-container: 0;
    background-color: #000000;
    margin: 0;
    height: 100px;
    display: flex;
    align-items: center;
    padding: 10px 0;
    z-index: 1000;
    /* Asegura que el navbar esté por encima de otros elementos */
    /* Reduce the padding here */
}

.nav_link {
    margin-right: 30px;
    padding: 0;
    display: flex;
    gap: 1.5em;
}

.equipo {
    width: 100%;
    height: 750px;
}

.equipofoto {
    width: 100%;
    height: 750px;
}

/* Responsive NavBar ya se estableció arriba, solo se hace llamado */
/* Responsive Foto Nosotros */

@media (max-width: 1024px) {
    .equipo {
        height: auto;
    }

    .equipofoto {
        height: auto;
    }
}

@media (max-width: 768px) {
    .equipo {
        height: auto;
    }

    .equipofoto {
        height: auto;
    }
}

@media (max-width: 480px) {
    .equipo {
        height: auto;
    }

    .equipofoto {
        height: auto;
    }
}

/* Nosotros socios*/
.socios {
    text-align: center;
    padding: 50px;
    color: white;
    background-color: #000000;
    background-image: radial-gradient(#ffffff 0.4px, #000000 0.5px);
    background-size: 10px 10px;
    margin-bottom: 5px;
}

.socios h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.socio {
    display: inline-block;
    margin: 20px;
    position: relative;
    color: white;
    vertical-align: middle;
    /* Asegura que los elementos se mantengan alineados en la parte superior */
}

.socio-img {
    position: relative;
}

.socio-img img {
    width: 300px;
    height: 380px;
    border-radius: 10px;
}

.info-button {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgb(255, 0, 0);
    color: rgb(255, 255, 255);
    font-size: 24px;
    width: 30px;
    height: 30px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;

}

.socio-info {
    display: none;
    text-align: center;
    margin-top: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 50px;
}

.socio-info h3 {
    margin: 0;
    font-size: 1.5em;
    color: white;
}

.socio-info p {
    margin: 5px 0;
}

.correoconsultor {
    color: white;
}

.ico_consultor {
    width: 20px;
    /* Adjust size as needed */
    height: 20px;
    margin-right: 5px;
}

/* Responsive Socios */
@media (max-width: 1024px) {
    .socio {
        margin: 10px;
    }
}

@media (max-width: 768px) {
    .socios {
        padding: 30px;
    }

    .socios h2 {
        font-size: 1.5em;
    }

    .socio {
        margin: 10px;
    }

    .socio-img img {
        width: 250px;
    }

    .info-button {
        font-size: 20px;
        width: 25px;
        height: 25px;
        bottom: 5px;
        right: 5px;
    }
}

@media (max-width: 480px) {
    .socios {
        padding: 20px;
    }

    .socios h2 {
        font-size: 1.2em;
    }

    .socio {
        margin: 5px;
    }

    .socio-img img {
        width: 200px;
    }

    .info-button {
        font-size: 18px;
        width: 20px;
        height: 20px;
        bottom: 3px;
        right: 3px;
    }
}

/*Pestaña Servicios*/
.pservicios {
    text-align: center;
    padding: 40px 0;
    margin: 15px;
}

.pservicios h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #ad0808;
}

.servicios-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-content: center;
}

.servicio {
    position: relative;
    height: 350px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: white;
    text-align: left;
}

.servicio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
}

.servicio h3,
.servicio p {
    position: relative;
    z-index: 1;

}

.pservicios a {
    color: inherit;
    /* Mantiene el color del texto original */
    text-decoration: none;
    /* Elimina el subrayado */
}

.pservicios a:hover {
    text-decoration: underline;
    color: #ff0b0b;
    /* Opcional: subrayado al pasar el ratón por encima */
}

s .servicio h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.servicio p {
    font-size: 14px;
}

.servicio:nth-child(1) {
    background-image: url("/images/servicios/FTTH.png");
}

.servicio:nth-child(2) {
    background-image: url('/images/servicios/HFC.png');
}

.servicio:nth-child(3) {
    background-image: url('/images/servicios/ClaroEmprendedor.png');
}

.servicio:nth-child(4) {
    background-image: url('/images/servicios/olo.png');
}

.servicio:nth-child(5) {
    background-image: url('/images/servicios/Max_Negocio.png');
}

.servicio:nth-child(6) {
    background-image: url('/images/servicios/fondo.png');
}

/* Responsive Servicios Foto y texto */
/* Responsive Servicios Foto y texto */
@media only screen and (max-width: 768px) {
    .servicios-container {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    }
}

.a {
    overflow: auto;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.7)),
        url(/images/servicios/fondo.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;

    display: flex;
    max-width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: rgb(255, 255, 255);
    position: relative;
}

.b {
    width: 100%;
    padding: 20px;
}

.c {
    font-size: 3rem;
    margin-bottom: 20px;
    margin-top: 50px;
}

.d {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
    gap: 40px;
}

.h {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
    margin-bottom: 5%;
    gap: 40px;
}

.e {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 240px;
}

.e img {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
}

.f {
    display: flex;
    align-items: baseline;
    font-size: 2rem;
}

.plus {
    font-size: 2.5rem;
}

.number {
    font-size: 2.5rem;
    margin-left: 5px;
}

.g {
    font-size: 1rem;
    margin-top: 10px;
}

@media (max-width: 1024px) {
    .c {
        font-size: 2.5rem;
    }

    .e {
        width: 200px;
    }

    .f {
        font-size: 1.5rem;
    }

    .plus,
    .number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {

    .d,
    .h {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .e {
        width: 80%;
        max-width: 300px;
    }

    .f {
        font-size: 1.5rem;
    }

    .plus,
    .number {
        font-size: 2rem;
    }

    .g {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .c {
        font-size: 2rem;
    }

    .e {
        width: 100%;
    }

    .f {
        font-size: 1.2rem;
    }

    .plus,
    .number {
        font-size: 1.5rem;
    }

    .g {
        font-size: 0.8rem;
    }
}

/* Estilos CSS CONTACTO */
.contacto_contener {
    max-width: 100%;
    margin-left: 90px;
    margin-top: 15px;
    margin-bottom: 20px;
    margin-right: 30px;
}

h1 {
    margin-bottom: 20px;
}

.flex-container {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.contact-info {
    max-width: 900px;

}

.icon_contact {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;

}

.icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
    flex-shrink: 0;
}

.text-content {
    flex-grow: 1;
}

.icon_contact p {
    margin: 0;
    line-height: 1.5;
    /* Ligeramente aumentado para mejor legibilidad */
    font-size: 16px;
    /* Ajusta según sea necesario */
}

.additional-info {
    margin-top: 20px;
    font-style: italic;
}

.contact-form {

    justify-self: center;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: linear-gradient(to bottom, rgba(255, 0, 0, 0.1), rgb(255, 255, 255));
}

.contact-form textarea {
    height: 100px;
}

.folleto-form {
    flex-basis: 100%;
    text-align: center;
    margin-bottom: 30px;

}

.contact-form button {
    background-color: #820000;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
}

.icon {
    width: 20px;
    vertical-align: middle;
}

.opciones {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: linear-gradient(to bottom, rgba(255, 0, 0, 0.1), rgb(255, 255, 255));
}

@media (min-width: 768px) {
    .flex-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .contact-info {
        flex-basis: 30%;
    }

    .contact-form {
        flex-basis: 65%;
    }
}


/* Responsive CONTACTOS */
@media (min-width: 768px) {
    .flex-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .contact-info {
        flex-basis: 30%;
    }

    .contact-form {
        flex-basis: 65%;
    }
}

@media (max-width: 768px) {
    .contacto_contener {
        margin: 15px 20px;
    }

    .contact-form {
        margin-left: 0;
    }

    .form-img {
        max-height: 400px;
    }
}

@media (max-width: 480px) {
    .icon_contact {
        flex-direction: column;
        /* Cambia la dirección del flexbox para los íconos */
        align-items: flex-start;
        /* Alinea los íconos a la izquierda */
    }

    .icon {
        margin-right: 0;
        margin-bottom: 10px;
        /* Ajuste el margen inferior de los íconos */
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form .opciones {
        padding: 8px;
        /* Reduce el padding de los inputs y textareas */
        font-size: 14px;
        /* Reduce el tamaño de fuente */
    }

    .contact-form button {
        padding: 8px 16px;
        /* Reduce el padding del botón */
        font-size: 14px;
        /* Reduce el tamaño de fuente del botón */
    }

    .form-img {
        max-height: 300px;
    }
}


.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.float:hover {
    text-decoration: none;
    color: #25d366;
    background-color: #fff;
}

.my-float {
    margin-top: 16px;
}

.form-img {
    height: 550px;
    width: auto;

}

a {
    color: white;
}

.ptrabaja {
    font-weight: 600;

    margin-bottom: 15px;
}