/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colores inspirados en arena y mar mediterráneo */
    --sand-light: #F5E6D3;
    --sand-medium: #E8D5B7;
    --sand-dark: #D4B896;
    --sea-light: #87CEEB;
    --sea-medium: #4682B4;
    --sea-dark: #2F4F4F;
    --sea-deep: #1e3a5f;
    --white: #FFFFFF;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --accent: #FF6B6B;
    --success: #2ECC71;
    --warning: #F39C12;
    
    /* Tipografía */
    --font-primary: 'Poppins', sans-serif;
    
    /* Sombras */
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 8px 30px rgba(0,0,0,0.2);
    
    /* Transiciones */
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--sea-deep), var(--sea-dark));
    color: var(--white);
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: var(--transition);
    box-shadow: var(--shadow-heavy);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-accept, .btn-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    font-size: 14px;
}

.btn-accept {
    background: var(--success);
    color: var(--white);
}

.btn-accept:hover {
    background: #27AE60;
    transform: translateY(-2px);
}

.btn-reject {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-reject:hover {
    background: var(--white);
    color: var(--sea-dark);
}

.cookie-link {
    color: var(--sand-light);
    text-decoration: underline;
    font-size: 14px;
}

.cookie-link:hover {
    color: var(--white);
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--white), var(--sand-light));
    box-shadow: var(--shadow-light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.header.hidden {
    transform: translateY(-100%);
}

.navbar {
    padding: 20px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.nav-logo a {
    text-decoration: none;
    color: var(--sea-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 150px;
    width: auto;
    object-fit: contain;
    filter: brightness(0.8) contrast(1.1);
}

.logo-text h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: -5px;
    color: var(--sea-dark);
}

.logo-text span {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 300;
}

/* Logo hover effects */
.nav-logo a:hover .logo-img {
    filter: brightness(0.9) contrast(1.2);
    transform: scale(1.05);
    transition: var(--transition);
}

.nav-logo a:hover .logo-text h1 {
    color: var(--sea-medium);
    transition: var(--transition);
}

/* Logo adaptations for different backgrounds */
.header.scrolled .logo-img {
    filter: brightness(0.7) contrast(1.3);
}

/* Responsive logo */
@media (max-width: 768px) {
    .logo-img {
        height: 80px;
    }
    
    .logo-text h1 {
        font-size: 24px;
    }
    
    .logo-text span {
        font-size: 12px;
    }
    
    .nav-logo a {
        gap: 8px;
    }
    
    .social-links a {
        font-size: 24px;
    }
    
    .social-links {
        gap: 15px;
    }
    
}

@media (max-width: 480px) {
    .logo-img {
        height: 60px;
    }
    
    .logo-text h1 {
        font-size: 20px;
    }
    
    .logo-text span {
        font-size: 11px;
    }
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--sea-medium);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sea-medium);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: var(--sea-medium);
    font-size: 28px;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--sea-dark);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--sea-dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    margin-top: 120px;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--sand-light), var(--white));
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--sea-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--sea-medium), var(--sea-dark));
    color: var(--white);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: transparent;
    color: var(--sea-dark);
    border: 2px solid var(--sea-medium);
}

.btn-secondary:hover {
    background: var(--sea-medium);
    color: var(--white);
    transform: translateY(-3px);
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--white);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--sea-dark);
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.feature-card i {
    font-size: 3rem;
    color: var(--sea-medium);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--sea-dark);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Properties Section */
.properties {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--sand-light), var(--sand-medium));
}

.properties h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--sea-dark);
    margin-bottom: 60px;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.property-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

/* Property Slider Styles */
.property-slider {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slider-track img {
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--sea-dark);
    transition: var(--transition);
    z-index: 10;
    opacity: 0;
}

.property-slider:hover .slider-btn {
    opacity: 1;
}

.slider-prev {
    left: 15px;
}

.slider-next {
    right: 15px;
}

.slider-btn:hover {
    background: var(--white);
    color: var(--sea-medium);
    transform: translateY(-50%) scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--white);
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.property-info {
    padding: 25px;
}

.property-info h3 {
    font-size: 1.4rem;
    color: var(--sea-dark);
    margin-bottom: 10px;
}

.property-location {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 14px;
}

.property-location i {
    color: var(--sea-medium);
    margin-right: 5px;
}

.property-description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.property-features {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.property-features span {
    background: var(--sand-light);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    color: var(--sea-dark);
}

.property-features i {
    color: var(--sea-medium);
    margin-right: 5px;
}

.property-action {
    text-align: center;
    margin-top: 20px;
}

.btn-property {
    display: inline-block;
    background: linear-gradient(135deg, var(--sea-medium), var(--sea-dark));
    color: var(--white);
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.btn-property:hover {
    background: linear-gradient(135deg, var(--sea-dark), var(--sea-medium));
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: var(--white);
}


/* Activities Section - Carmen Beach Hostel Style */
.activities {
    padding: 100px 0;
    background: var(--white);
}

.activities h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 30px;
    line-height: 1.2;
}

.activities-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.weather-widget-container {
    text-align: center;
    margin: 40px 0 80px 0;
    padding: 30px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(53, 122, 189, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(74, 144, 226, 0.2);
    position: relative;
}

.weather-widget-container::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--sea-medium), transparent);
}

.activities-content {
    max-width: 1200px;
    margin: 0 auto;
}

.activity-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.activity-section.reverse {
    direction: rtl;
}

.activity-section.reverse > * {
    direction: ltr;
}

.activity-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.activity-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.activity-image:hover img {
    transform: scale(1.05);
}

.activity-text h3 {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 20px;
    line-height: 1.3;
}

.activity-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.activity-text p:last-child {
    margin-bottom: 0;
}

.garbi-button-container {
    margin: 25px 0;
}

.btn-garbi {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--white), #f8f9fa);
    border: 2px solid var(--sea-medium);
    border-radius: 15px;
    padding: 15px 20px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    max-width: 350px;
}

.btn-garbi:hover {
    background: linear-gradient(135deg, var(--sea-light), var(--white));
    border-color: var(--sea-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.garbi-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.garbi-text {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.garbi-text strong {
    color: var(--dark-blue);
    font-size: 1rem;
    line-height: 1.2;
    margin-bottom: 2px;
}

.garbi-text small {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 400;
}

.btn-garbi i {
    color: var(--sea-medium);
    font-size: 1.1rem;
    transition: var(--transition);
}

.btn-garbi:hover i {
    color: var(--sea-dark);
    transform: translateX(2px);
}

.festivals-section {
    background: linear-gradient(135deg, var(--sand-light), var(--white));
    padding: 60px 40px;
    border-radius: 25px;
    margin: 80px 0;
    text-align: center;
}

.festivals-section h3 {
    font-size: 2.2rem;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.festivals-section > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.festivals-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.festival-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.festival-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.festival-image {
    height: 250px;
    overflow: hidden;
}

.festival-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.festival-card:hover .festival-image img {
    transform: scale(1.1);
}

.festival-content {
    padding: 30px;
    text-align: left;
}

.festival-content h4 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.festival-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--sea-light), var(--sea-medium));
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 60px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    color: var(--dark-blue);
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--dark-blue);
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--dark-blue);
    background: rgba(255, 255, 255, 0.2);
    padding: 8px;
    border-radius: 50%;
}

.contact-item a {
    color: var(--dark-blue);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--sea-dark);
    text-decoration: underline;
}

.contact-map {
    margin-top: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    background: var(--white);
    padding: 5px;
}

.contact-map iframe {
    border-radius: 10px;
    display: block;
    transition: var(--transition);
    height: 420px;
}

.contact-map:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.map-fallback {
    padding: 15px;
    text-align: center;
    background: var(--sand-light);
    border-radius: 0 0 10px 10px;
}

.map-fallback p {
    margin: 0 0 10px 0;
    color: var(--sea-dark);
    font-size: 0.9rem;
}

.map-fallback a {
    color: var(--sea-medium);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.map-fallback a:hover {
    color: var(--sea-dark);
}

.map-fallback i {
    margin-right: 5px;
}

.contact-social {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.contact-social a {
    color: var(--white);
    font-size: 1.5rem;
    transition: var(--transition);
}

.contact-social a:hover {
    color: var(--sand-light);
    transform: translateY(-2px);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--sand-light);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: var(--font-primary);
    background: var(--white);
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-blue);
    font-size: 0.9rem;
}

.form-group select {
    cursor: pointer;
}

.form-group input[type="date"] {
    cursor: pointer;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sea-medium);
    box-shadow: 0 0 0 3px rgba(70, 130, 180, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--sea-deep);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.footer-logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.2) contrast(0.9);
}

.footer-section h3,
.footer-section p {
    margin-bottom: 10px;
    color: var(--text-light);
}

.footer-section p a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section p a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-section h3 {
    margin-bottom: 0;
}

.footer-section p {
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--sand-light);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: var(--white);
    font-size: 1.5rem;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--sand-light);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--sea-dark);
    padding-top: 20px;
    text-align: center;
    color: var(--sand-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        transition: all 0.3s ease;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Menú móvil activo */
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        border-radius: 0 0 15px 15px;
        padding: 20px 0;
        z-index: 1000;
    }
    
    .nav-menu.active .nav-link {
        padding: 15px 30px;
        border-bottom: 1px solid var(--sand-light);
        transition: var(--transition);
    }
    
    .nav-menu.active .nav-link:hover {
        background: var(--sand-light);
        color: var(--sea-dark);
    }
    
    .nav-menu.active .nav-link:last-child {
        border-bottom: none;
    }
    
    /* Animación del hamburger */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .features-grid,
    .properties-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .footer-logo-img {
        height: 70px;
    }
    
    .footer-logo {
        gap: 15px;
    }
}

@media (max-width: 768px) and (min-width: 481px) {
    .activity-section {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .activity-section.reverse {
        direction: ltr;
    }
    
    .activity-image {
        order: -1;
    }
    
    .activity-image img {
        height: 300px;
    }
    
    .activity-text h3 {
        font-size: 1.8rem;
    }
    
    .festivals-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .festivals-section {
        padding: 40px 20px;
        margin: 60px 0;
    }
    
    .weather-widget-container {
        margin: 30px 0 60px 0;
        padding: 20px;
    }
    
    .btn-garbi {
        max-width: 100%;
        padding: 12px 15px;
        gap: 12px;
    }
    
    .garbi-logo {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .features h2,
    .properties h2,
    .activities h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    .activity-section {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
        text-align: center;
    }
    
    .activity-section.reverse {
        direction: ltr;
    }
    
    .activity-image {
        order: -1;
    }
    
    .activity-image img {
        height: 250px;
    }
    
    .activity-text h3 {
        font-size: 1.5rem;
    }
    
    .activity-text p {
        font-size: 1rem;
    }
    
    .festivals-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .festivals-section {
        padding: 30px 20px;
        margin: 40px 0;
    }
    
    .festivals-section h3 {
        font-size: 1.8rem;
    }
    
    .festival-content {
        padding: 20px;
    }
    
    .weather-widget-container {
        margin: 20px 0 50px 0;
        padding: 15px;
    }
    
    .weather-widget-container::after {
        width: 40px;
        bottom: -30px;
    }
    
    .btn-garbi {
        max-width: 100%;
        padding: 10px 12px;
        gap: 10px;
        flex-direction: column;
        text-align: center;
    }
    
    .garbi-logo {
        height: 35px;
    }
    
    .garbi-text strong {
        font-size: 0.9rem;
    }
    
    .garbi-text small {
        font-size: 0.8rem;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .checkbox-container {
        font-size: 0.9rem;
        gap: 10px;
    }
    
    .checkbox-container input[type="checkbox"] {
        width: 18px;
        height: 18px;
    }
    
    .contact-map {
        margin-top: 20px;
    }
    
    .contact-map iframe {
        height: 300px;
    }
    
    .property-features {
        justify-content: center;
    }
    
    .footer-logo-img {
        height: 50px;
    }
    
    
    .footer-logo {
        gap: 12px;
        margin-bottom: 20px;
    }
    
    /* Slider responsive */
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
    
    .slider-dots {
        bottom: 10px;
        gap: 6px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--sea-medium), var(--sea-dark));
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, var(--sea-dark), var(--sea-medium));
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.contact-form button:hover {
    background: linear-gradient(135deg, var(--sea-dark), var(--sea-medium));
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

/* Checkbox simple y funcional */
.checkbox-group {
    margin-bottom: 20px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-dark);
}

.checkbox-container input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--sea-medium);
    cursor: pointer;
    margin: 0;
    flex-shrink: 0;
}

.checkbox-custom {
    display: none;
}

.checkbox-text {
    flex: 1;
}

.checkbox-text a {
    color: var(--sea-medium);
    text-decoration: underline;
    transition: var(--transition);
}

.checkbox-text a:hover {
    color: var(--sea-dark);
}

/* Mensaje del formulario */
.form-message {
    margin-top: 15px;
    padding: 15px;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message.info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Botón deshabilitado */
.contact-form button:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.contact-form button:disabled:hover {
    background: #ccc;
    transform: none;
    box-shadow: var(--shadow-light);
}

/* reCAPTCHA styling */
.g-recaptcha {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

/* Responsive reCAPTCHA */
@media (max-width: 480px) {
    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: center;
    }
}

.scroll-to-top:active {
    transform: translateY(-1px);
}

/* Responsive scroll button */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.property-card,
.service-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scrolling nativo */
html {
    scroll-behavior: smooth;
}

/* Navegación suave con scroll-margin-top */
#inicio,
#propiedades, 
#contacto {
    scroll-margin-top: 140px;
}
