/* florida_condos.css */

/* ############### DESKTOP ###############   */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden; /* Esto previene el scroll horizontal y elimina el espacio blanco lateral */
}

.mobile, .tablet {
    display: none;
}

.desktop {
    display: block;
}


h1 {
    font-size: 1.5rem;
}

h2 {
    font-size: 2rem;
}

h4{
    font-size: 3rem;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: url('../assets/imagenes_fec_sin_reducir/header_landing_page_3.png'); /* Imagen de fondo */
    background-size:cover; /* Asegura que la imagen de fondo cubra todo el espacio */
    background-position: center; /* Centra la imagen de fondo */
    height: 70px; /* Ajusta la altura según sea necesario */
    position: relative;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 20px;
    z-index: 10; /* Asegura que los elementos estén encima del fondo */
}

/* Estilo para el texto del logo */
.header-left .logo-text {
    font-family: 'Montserrat', sans-serif; /* Tipografía Montserrat */
    font-weight: 700; /* Negrita */
    /* font-size: 24px; */ /* Tamaño del texto del logo */
    color: #E6E6E6; /* Color del texto #E6E6E6 */
    margin: 0;
    padding-left: 0px; /* Asegura que no haya margen a la izquierda */
    padding-top: 0px; /* Ajusta el espaciado superior */
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 1rem;
}

.header-right .icons {
    display:flex;
    gap: -10px; /* Espacio entre los íconos */
    /* margin-top: 10px; /* Ajusta si es necesario para el espaciado */ 
    /* margin-left: 500px; */
    margin-top: 15px;
}

/* Iconos de Redes Sociales (Font Awesome) */
.header-right .icons a i {
    font-size: 30px; /* Ajusta el tamaño de los iconos */
    color: #E6E6E6; /* Color #E6E6E6 */
    margin: 0 10px; /* Espacio entre los iconos */
    margin-top: 12px;
    transition: color 0.3s ease-in-out; /* Transición suave al cambiar el color */
}

/* Efecto hover para los iconos */
.header-right .icons a:hover i {
    color: #ffffff; /* Cambia el color al pasar el mouse por encima (opcional) */
}

.social-media-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #E6E6E6;
    font-size: 12px;
    margin-top: 5px;
    margin-bottom: 15px;
    text-align: center;
    /* margin-left: 500px; */
}

/* Asegura que el contenido esté sobre la imagen de fondo */
.header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Asegura que el contenido esté por encima del fondo */
}

/* Main Content 1: Sección de Citas */
.schedule-call-section {
    background-image: url('../assets/imagenes_fec_sin_reducir/fec_banner_landing_page_1.png'); /* Imagen de fondo */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    image-rendering: -webkit-optimize-contrast; /* Mejora de nitidez para Webkit (Chrome, Safari) */
    image-rendering: crisp-edges; /* Mejora general de nitidez */
    padding: 2rem 0;
}

.schedule-call-content {
    text-align: center;
    color: white;

}

.schedule-call-title {
    padding-left: 8rem;
    padding-right: 8rem;
    font-weight: 400;
    position: relative;
    margin-bottom: 25px;
    font-style: italic;
    color: white;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.8);
    z-index: 10;
    letter-spacing: .20rem;
}

/* Botón Schedule a Call */
.cta-button {
    background-color: #F68D1E; /* Fondo naranja */
    border-radius: 10px;
    display: inline-block;
    padding: 15px 30px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    position: relative;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Sombra inicial */
    transition: all 0.3s ease-in-out; /* Transición suave para hover y clic */
    /* margin-top: -200px; /* Asegura que el botón se mantenga en su lugar */ 
}

/* Contenido del botón */
.cta-button-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px; /* Espacio entre el icono y el texto */
}

/* Icono de Font Awesome (Teléfono) */
.cta-button-content i {
    font-size: 30px; /* Ajusta el tamaño del icono */
    margin-right: 10px; /* Espacio entre el icono y el texto */
    vertical-align: middle; /* Alinea verticalmente con el texto */
    color: white; /* Asegura que el color del icono sea blanco */
}

.cta-text {
    font-family: 'Montserrat', sans-serif; /* Tipografía Montserrat */
    font-size: 30px;
    font-weight: 700;
}

/* Efecto hover (sombra más profunda y aumento de tamaño) */
.cta-button:hover {
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2); /* Sombra al hacer hover */
    transform: scale(1.05); /* Aumenta ligeramente el tamaño */
}

/* Efecto clic (reducción de tamaño y cambio de color) */
.cta-button:active {
    transform: scale(0.95); /* Reduce ligeramente el tamaño al hacer clic */
    background-color: #e67b16; /* Cambia ligeramente el color al hacer clic */
}

/* Main Content 2: Sección de Texto de Ubicación */
.location-section {
    background-color: #d9d9d9; /* Color de fondo gris */
    padding: 40px ; /* Espaciado superior e inferior */
    text-align: center;

}

.location-content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.location-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #20537A; /* Color del texto */
    margin: 0; /* Elimina márgenes */
}

/* Main Content 3: Sección de Videos y Botón */
.youtube-section {
    background-color: #20537A; /* Color de fondo azul */
    padding: 2rem 20px; /* Espaciado */
    text-align: center;
    padding-bottom: 3rem;
}

.youtube-title {
    font-family: 'Vollkorn', serif;
    font-size: 35px;
    font-weight: 700;
    color: white;
    margin-bottom: 33px;
    margin-top: -17px;
}

.highlight {
    color: #F68D1E; /* Color naranja para 'NOW' */
}

.youtube-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 23px;
    font-weight: 300;
    color: white;
    margin-bottom: 30px;
}

.videos {
    display: flex;
    justify-content: space-evenly;
    gap: 1rem;
    margin-bottom: 55px;
}

.videos iframe {
    width: 300px;
    height: 170px;
    border-radius: 10px;
    border: none;
}

.subscribe-button {
    background-color: #F68D1E; /* Fondo naranja */
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: bold;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    margin-top: 40px;
}

.subscribe-button:hover {
    background-color: #e67b16; /* Efecto hover */
}

/* Main Content 4: Sección de Formulario de Suscripción */
.subscribe-section {
    background-image: url('../assets/imagenes_fec_sin_reducir/landing_page_fec_-_imagenes__forms.png'); /* Añade la ruta a tu imagen de fondo aquí */
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    text-align: center;
    color: #000000; /* Texto en negro */
}

.subscribe-content {
    background-color: #ffffff; /* Fondo blanco sólido para el formulario */
    padding: 40px;
    border-radius: 10px; /* Bordes redondeados */
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2); /* Sombra para hacer que el formulario resalte */
    max-width: 600px;
    margin: 12px auto; /* Centrar el formulario */
}

.subscribe-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 45px;
    font-weight: bold;
    color: #F68D1E; /* Naranja */
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
    
}

.subscribe-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: #333; /* Color del texto  */
    margin-bottom: 30px;
    padding: 2rem 20px;
    text-shadow: 2px 2px 2px rgba(255, 255, 255, 0.8);
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.subscribe-form input[type="text"],
.subscribe-form input[type="email"] {
    padding: 15px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc; /* Borde alrededor de los campos de texto */
}

.subscribe-terms {
    font-size: 12px;
    color: #333;
    text-align: left;
    display: inline-block; /* Cambia de flex a inline-block para que el texto fluya en una sola línea */
    line-height: 1.5; /* Ajusta la altura de la línea para mayor legibilidad */
}

.subscribe-terms a {
    color: #F68D1E; /* Color del enlace */
    text-decoration: none;
    font-size: 12px;
}

.subscribe-form button {
    background-color: #20537A; /* Azul */
    color: white;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subscribe-form button:hover {
    background-color: #183c5e; /* Efecto hover */
}

/* Footer Section */
.footer-section {
    background-color: #20537A; /* Fondo azul */
    padding: 10px 20px;
    color: white;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    /* max-width: 1200px;
    margin: 0 auto; */
    gap: 1rem;
}

.footer-left {
    flex: 1;
    text-align: center;
    /* margin-left: -50px; */
}

.footer-logo {
    width: 150px; /* Tamaño ajustable del logo */
    margin-top: 30px;
    margin-left: -50px;
}

.footer-middle {
    flex: 3;
    text-align: center;
    margin-top: 40px;
}

.contact-info {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    margin: 5px 0;
}

.footer-company {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: bold;
    margin: 10px 0;
}

.footer-links a {
    color: #F68D1E; /* Enlaces en naranja */
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-right {
    flex: 1;
    text-align: center;
}

.footer-icons {
    display: flex;
    justify-content: center;
    gap: 30px; /* Ajusta este valor para controlar el espacio entre los iconos */
    /* margin-right: -300px; */
    margin-top: 20px;
}

.footer-icons a i {
    font-size: 40px;
    color: #d9d9d9;
    transition: color 0.3s ease-in-out;
}

.footer-icons a:hover i {
    color: #F68D1E; /* Naranja al hacer hover */
}

.footer-social-media-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 12px;
    margin-top: 10px;
    /* margin-right: -300px; */
}

.footer-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    margin: 10px; /* Espacio entre los elementos de contacto */
}

.contact-item i {
    color: #d9d9d9;
    font-size: 20px;
    margin-right: 10px;
}

.contact-details {
    display: flex;
    flex-direction: column; /* Coloca el 'EMAIL' o 'PHONE' encima del dato */
    align-items:flex-start; /* Asegura que estén centrados verticalmente */
    
}

.contact-link {
    color: #d9d9d9;
    font-weight: bold;
    font-size: 16px;
}

.contact-linkcall {
    color: #F68D1E;
    font-weight: bold;
    font-size: 16px;
}

.contact-link:hover {
    text-decoration: none;
}

.contact-text {
    color: #d9d9d9;
    font-size: 14px;
}

.contact-text:hover {
    text-decoration: underline; /* Subrayado al pasar el mouse sobre el enlace */
}

.footer-divider {
    border: none;
    height: 1px;
    background-color: #d9d9d9;
    margin: 20px 0;
    width: 100%;
}

.footer-company-info {
    text-align: center;
    color: #ffffff;
}

.footer-links a {
    color: #F68D1E;
    text-decoration: none;
    margin: 0 5px;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Estilos para el botón flotante */
.floating-button {
    position: fixed; /* Botón fijo que se desplaza con la página */
    bottom: 20px; /* Espaciado desde la parte inferior de la ventana */
    right: 20px; /* Espaciado desde el lado derecho de la ventana */
    background-color: #d9d9d9; /* Color de fondo */
    color: #20537A; /* Color del texto */
    padding: 10px 20px; /* Relleno del botón */
    border-radius: 50px; /* Bordes redondeados */
    font-family: 'Montserrat', sans-serif; /* Tipografía */
    font-size: 20px; /* Tamaño del texto */
    font-weight: 700; /* Negrita */
    display: flex; /* Alinear el icono y el texto en línea */
    align-items: center; /* Centra verticalmente el contenido */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Sombra para darle más relevancia */
    text-decoration: none; /* Eliminar subrayado */
    z-index: 1000; /* Asegura que el botón esté por encima de otros elementos */
    transition: background-color 0.3s ease-in-out; /* Transición suave para el cambio de color */
}

/* Espacio entre el texto y el icono */
.floating-button i {
    margin-left: 10px;
    font-size: 20px; /* Tamaño del icono */
}

/* Efecto hover para el botón */
.floating-button:hover {
    background-color: #F68D1E; /* Cambiar color al hacer hover */
    color: #FFFFFF;
}

