body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; line-height: 1.8; color: #333; font-size: 18px; }
.hero { background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../img/amanecer-bahia-de-banderas.webp') no-repeat center center/cover; color: white; text-align: center; padding: 100px 20px; position: relative; }
.hero h1 { font-size: 3em; margin: 0; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
.hero p { font-size: 1.5em; margin-top: 10px; text-shadow: 1px 1px 2px rgba(0,0,0,0.5); }
.language-switcher { position: absolute; top: 20px; right: 20px; }
.language-switcher a { color: white; text-decoration: none; font-weight: bold; padding: 10px 15px; background-color: #3498db; border-radius: 5px; transition: background-color 0.3s ease; }
.language-switcher a:hover { background-color: #2980b9; }
.price { font-size: 2.2em; font-weight: bold; margin-top: 20px; text-shadow: 1px 1px 2px rgba(0,0,0,0.5); }
.section { padding: 60px 20px; text-align: center; }
.section-light { background-color: #f9f9f9; }
.section-dark { background-color: #2c3e50; color: white; }
.container { max-width: 1100px; margin: auto; }
h2 { font-size: 2.5em; margin-bottom: 20px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; }
.feature-item { background: white; padding: 30px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.feature-item img { 
    max-width: 300px; 
    margin-bottom: 15px; 
    transition: transform 0.3s ease-in-out;
}
.feature-item img:hover {
    transform: scale(1.05);
}
.cta { background-color: #27ae60; color: white; padding: 30px; border-radius: 10px; margin-top: 40px; }
.cta-button { 
    background-color: #e74c3c; 
    color: white; 
    padding: 15px 40px; 
    text-decoration: none; 
    font-weight: bold; 
    border-radius: 5px; 
    transition: background 0.3s ease; 
    display: inline-block; 
    margin-top: 20px; 
}
.cta-button:hover { background-color: #c0392b; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 15px; margin-top: 40px; }
.gallery-grid img { 
    width: 100%; 
    height: auto; 
    border-radius: 8px; 
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-in-out;
}
.gallery-grid img:hover {
    transform: scale(1.05);
}
.about-us { 
    text-align: center; 
    padding: 80px 20px; 
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../img/ballena-bahia-de-banderas.webp') no-repeat center center/cover;
    color: white;
}
.contact-info {
    margin-top: 40px;
    text-align: center;
    line-height: 2;
    font-size: 1.2em;
}
.contact-info a { color: #fff; text-decoration: none; font-weight: bold; }
.contact-form { max-width: 600px; margin: auto; text-align: left; }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px; margin-bottom: 15px; border: 1px solid #ddd; border-radius: 5px; box-sizing: border-box; }
.contact-form button { width: 100%; padding: 15px; background-color: #3498db; color: white; border: none; border-radius: 5px; cursor: pointer; }
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}
.whatsapp-float a {
    display: block;
    background-color: transparent;
    padding: 0;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.whatsapp-float a:hover {
    transform: scale(1.05);
    background-color: rgba(255, 255, 255, 0.2);
}
.whatsapp-float .fa-whatsapp {
    color: #25D366;
    font-size: 2em;
}
.scroll-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 1000;
}
.scroll-top a {
    display: block;
    background-color: transparent;
    padding: 0;
    text-decoration: none;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}
.scroll-top a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}
.scroll-top .fa-arrow-up {
    color: #3498db;
    font-size: 2em;
    animation-duration: 2s;
}
.contact-footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; 
    gap: 20px;
}
.footer-logo {
    flex-shrink: 0;
}
.footer-contact-info {
    flex-grow: 1;
}
#contact.section {
    background-color: #cce6ff;
    border-top: 5px solid #b3d9ff;
}
.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}
.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}