.btn-share-whatsapp {
    display: inline-block;
    padding: 10px 20px;
    background-color: #25d366; /* Verde original de WhatsApp o usa el dorado de tu web */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-share-whatsapp:hover {
    background-color: #128c7e;
    transform: scale(1.05);
}

/* Estilo para el mapa de las Islas Canarias */
.islas-canarias-map {
    position: absolute; /* Permite posicionarla libremente */
    top: 30px;          /* Ajusta la distancia desde arriba */
    right: 40px;        /* Ajusta la distancia desde la derecha */
    width: 150px;       /* Tamaño del mapa, puedes ajustarlo */
    height: auto;       /* Mantiene la proporción */
    opacity: 0.7;       /* Un poco de transparencia para que no distraiga, puedes ajustarla */
    z-index: -1;        /* Asegura que esté por debajo o encima de otros elementos si hay superposición */
}

/* Si tu sección .hero tiene un position: static; por defecto, cámbialo a relative para que absolute funcione */
.hero {
    position: relative; /* Importante para que 'position: absolute' funcione dentro de ella */
    /* ... el resto de tus estilos .hero ... */
}

/* Media Queries para ajustar el tamaño en móviles si es necesario */
@media (max-width: 768px) {
    .islas-canarias-map {
        width: 120px; /* Más pequeño en pantallas móviles */
        top: 10px;
        right: 10px;
    }
}



/* Esto obligará al checkbox y al texto a estar juntos y centrados */
.contenedor-privacidad {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
    gap: 10px !important;
    margin: 20px auto !important;
    max-width: 450px !important;
    text-align: left !important;
}

.contenedor-privacidad input {
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
    min-width: 18px !important;
    height: 18px !important;
    cursor: pointer !important;
}

.contenedor-privacidad label {
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
    cursor: pointer !important;
}



/* Variables de Estilo */
:root {
    --azul-marino: #0d2a4e;
    --dorado: #b89a5f;
    --dorado-hover: #d4b375;
    --blanco: #ffffff;
    --gris-claro: #f4f4f4;
    --texto: #333333;
}

/* General */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    color: var(--texto);
    line-height: 1.6;
    scroll-behavior: smooth;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--azul-marino);
}

/* Header & Nav */
header {
    background: var(--blanco);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 120px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--azul-marino);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--dorado);
}

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(13, 42, 78, 0.8), rgba(13, 42, 78, 0.8)), 
                url('fondo.avif') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--blanco);
}

.hero h1 {
    color: var(--blanco);
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-gold {
    background: var(--dorado);
    color: var(--blanco);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 2px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-gold:hover {
    background: var(--dorado-hover);
}

/* About Section */
.about {
    padding: 5rem 0;
    text-align: center;
}

.divider {
    width: 60px;
    height: 3px;
    background: var(--dorado);
    margin: 1.5rem auto;
}

.description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    background: var(--gris-claro);
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3, .contact-form h3 {
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.btn-submit {
    background: var(--azul-marino);
    color: var(--blanco);
    border: none;
    padding: 1rem 2rem;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    transition: 0.3s;
}

.btn-submit:hover {
    background: var(--dorado);
}

/* Footer */
footer {
    background: var(--azul-marino);
    color: var(--blanco);
    text-align: center;
    padding: 2rem 0;
    font-size: 0.8rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    color: #fff;
}

.whatsapp-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

/* En móviles ocultamos el texto para que no estorbe, dejamos solo el icono */
@media screen and (max-width: 768px) {
    .whatsapp-float span {
        display: none;
    }
    .whatsapp-float {
        padding: 10px;
        bottom: 15px;
        right: 15px;
    }
    .whatsapp-icon {
        margin-right: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .nav-links {
        display: none;
    }
}