﻿.main {
    height: 375px; /* Ajusta la altura según tus necesidades */
    overflow: hidden; /* Evita que la imagen se desborde */
}

    .main img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Ajusta la imagen para cubrir el contenedor */
    }

.box_main {
    padding-left: 10px; /* Ajusta este valor según tus necesidades */
}

.contact_section {
    background-size: cover; /* Cubre toda la sección */
    background-position: center; /* Centra la imagen */
    background-repeat: no-repeat; /* Evita que la imagen se repita */
    padding: 40px 0; /* Ajusta el padding según sea necesario */
}

.icon_7 {
    filter: brightness(0) saturate(100%) invert(76%) sepia(51%) saturate(1557%) hue-rotate(122deg) brightness(98%) contrast(93%);
}

.icon_7 {
    width: 80px; /* Ajusta el tamaño según tus necesidades */
    height: 80px; /* Mantén la proporción */
    margin-right: 20px;
}

    .icon_7 img {
        width: 100%; /* La imagen ocupará el 100% del contenedor */
        height: auto; /* Mantiene la proporción de la imagen */
    }

.contact_box {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.Email_text, .massage-bt {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    color: black;
}

.massage-bt {
    resize: vertical; /* Permite redimensionar verticalmente el textarea */
}

.send_bt button {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .send_bt button:hover {
        background-color: #0056b3;
    }

.map_container {
    margin-top: 30px; /* Espacio entre el formulario y el mapa */
    border-radius: 10px; /* Bordes redondeados */
    overflow: hidden; /* Oculta el desbordamiento del iframe */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra suave */
}

    .map_container iframe {
        display: block; /* Elimina el espacio adicional debajo del iframe */
        border: none; /* Elimina el borde predeterminado */
        height: 400px;
    }


/* Estilos generales del footer */
.footer_section {
    background-color: #2c3e50; /* Fondo oscuro */
    color: #ffffff; /* Texto blanco */
    padding: 40px 0;
}

.footer_logo img {
    width: 150px; /* Ajusta el tamaño del logo */
    margin-bottom: 20px;
}

.address_text {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffffff;
}

.contact_info .map_icon {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

    .contact_info .map_icon img {
        width: 20px;
        height: 20px;
        margin-right: 10px;
        filter: brightness(0) invert(1); /* Iconos blancos */
    }

    .contact_info .map_icon span {
        color: #ffffff; /* Texto blanco */
    }

.footer_text {
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc; /* Texto gris claro */
}

.footer_links {
    list-style: none;
    padding: 0;
}

    .footer_links li {
        margin-bottom: 10px;
        font-size: 16px;
    }

    .footer_links a {
        color: #cccccc; /* Enlaces gris claro */
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .footer_links a:hover {
            color: #19e9d9; /* Color personalizado para el título */
        }

.newsletter_form {
    display: flex;
    margin-bottom: 20px;
}

.Enter_text {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
}

.subscribe_bt {
    background-color: #007BFF; /* Color del botón */
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .subscribe_bt:hover {
        background-color: #0056b3; /* Color del botón al pasar el mouse */
    }

.social_icon ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
}

.social_icon img {
    width: 48px;
    height: 48px;
    transition: opacity 0.3s ease;
}

    .social_icon img:hover {
        opacity: 0.8;
    }

/* Estilos de la sección de copyright */
.copyright_section {
    background-color: #1a252f; /* Fondo más oscuro */
    padding: 15px 0;
    text-align: center;
}

.copyright_text {
    margin: 0;
    font-size: 14px;
    color: #cccccc; /* Texto gris claro */
}

    .copyright_text a {
        color: #007BFF; /* Enlaces azules */
        text-decoration: none;
    }

        .copyright_text a:hover {
            text-decoration: underline; /* Subrayado al pasar el mouse */
        }

.language-switcher {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.language-option {
    display: flex;
    align-items: center;
    margin: 0 5px;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
}

    .language-option:hover {
        background-color: rgba(0,0,0,0.1);
    }

.language-flag {
    width: 20px;
    height: 15px;
    margin-right: 5px;
    border: 1px solid #ddd;
}

.language-text {
    font-size: 14px;
}

/* Para móviles */
@@media (max-width: 768px) {
    .language-text {
        display: none;
    }

    .language-flag {
        margin-right: 0;
        width: 25px;
        height: 18px;
    }
}
