/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
}

h1, h2, h3 {
    margin-bottom: 20px;
}

p {
    text-align: justify;
    margin-bottom: 20px;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    color: #0056b3;
}

.logo-img {
    width: 90px;
    height: 90px;
    object-fit: cover;
}

/* Hero Section Styles */
.hero {
    position: relative;
    text-align: center;
    color: white;
}

.hero-img-wrapper {
    height: 400px;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

.btn-cta {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-cta:hover {
    background-color: #0056b3;
}

/* Galería Styles */
.gallery-slider .thumbnail {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin: 5px;
}

/* Footer Styles */
footer {
    background-color: #fff; /* Fondo blanco al 100% de opacidad */
    color: #333;
}

footer .logos img {
    width: 100px;
    height: 40px;
    object-fit: cover;
    margin: 0 20px;
}

footer .legal a {
    font-size: 0.8em; /* Tamaño de letra más pequeño */
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Centrar iframe */
.iframe-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

#apartmentIframeAll {
    width: 90%;
    max-width: 1200px;
    height: auto;
    border: none;
}

/* Ajuste de espaciado entre secciones */
section {
    padding: 20px 0;
}

.container-full iframe {
    display: block;
}

/* Ajuste para el banner de cookies */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f1f1f1;
    color: #333;
    text-align: center;
    padding: 10px;
    z-index: 1000;
    border-top: 1px solid #ddd;
    width: 80%;
}

.cookie-banner p {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.cookie-banner .btn-cta {
    margin: 5px;
    padding: 5px 10px;
    border: none;
    background-color: #007bff;
    color: white;
    cursor: pointer;
}

.cookie-banner .btn-cta:hover {
    background-color: #0056b3;
}

/* Instagram Section Styles */
.instagram-iframe {
    width: 100%;
    height: 150px;
    border: none;
}

/* Estilo para los títulos de las secciones */
.section-title {
    width: 100%;
    background-color: rgba(30, 42, 56, 0.5); /* Color de fondo con más transparencia */
    color: white;
    padding: 10px 0;
    text-align: center;
    margin-bottom: 20px;
}
/* Estilo Elegante */
#features {
    background-color: #f9f9f9;
    padding: 50px 0;
}
.section-title {
    font-size: 24px;
    margin-bottom: 40px;
    color: #333;
}
.feature-icon {
    font-size: 30px;
    color: #555;
    margin: 0 auto 20px;
    display: block;
}
.feature-icon i {
    transition: color 0.3s;
}
.feature-icon i:hover {
    color: #007bff;
}
.feature-title {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}
.feature-description {
    font-size: 12px;
    color: #777;
}
