/* ====================================
   MODERN CSS FOR LA MARINA APART DE MAR
   ==================================== */

/* CSS Variables */
:root {
    /* Colors */
    --primary-color: #0A4D68;
    --secondary-color: #088395;
    --accent-color: #05BFDB;
    --dark-color: #051F2E;
    --light-color: #F8F9FA;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-gray: #6B7280;
    --text-light: #9CA3AF;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0A4D68 0%, #088395 100%);
    --gradient-accent: linear-gradient(135deg, #088395 0%, #05BFDB 100%);
    --gradient-overlay: linear-gradient(to bottom, rgba(10, 77, 104, 0.7), rgba(8, 131, 149, 0.8));

    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    --font-display: 'Playfair Display', serif;

    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding) 0;
}

.bg-light {
    background-color: var(--light-color);
}

/* ====================================
   HEADER
   ==================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #f3f2ed;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-top {
    background: var(--gradient-primary);
    padding: 10px 0;
}

.header-top-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-base);
}

.contact-item:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.contact-item i {
    font-size: 16px;
}

.header-main {
    padding: 15px 0;
    background: #f3f2ed;
}

.header-main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    transition: var(--transition-base);
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    gap: 35px;
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-accent);
    transition: var(--transition-base);
    border-radius: 10px;
}

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

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 25px;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition-base);
}

/* ====================================
   HERO SLIDER
   ==================================== */
.hero-slider {
    margin-top: 128px;
    height: calc(100vh - 128px);
    min-height: 600px;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Vignette effect - oscurece solo los bordes */
    background:
        radial-gradient(ellipse at center,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.6) 100%);
    /* Degradado sutil en la parte inferior para mejor legibilidad */
    background:
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0.15) 0%,
            rgba(0, 0, 0, 0.05) 40%,
            rgba(0, 0, 0, 0.4) 100%),
        radial-gradient(ellipse at center,
            transparent 0%,
            rgba(0, 0, 0, 0.2) 70%,
            rgba(0, 0, 0, 0.5) 100%);
}

.hero-content {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    color: var(--white);
    width: 100%;
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    /* Text shadow mejorado para máxima legibilidad */
    text-shadow:
        0 2px 10px rgba(0, 0, 0, 0.6),
        0 4px 20px rgba(0, 0, 0, 0.4),
        0 8px 40px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.98;
    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.6),
        0 4px 16px rgba(0, 0, 0, 0.3);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(5, 191, 219, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(5, 191, 219, 0.4);
}

.btn-outline {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--white);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    transition: var(--transition-base);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
    font-weight: 900;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--white);
    opacity: 0.4;
    transition: var(--transition-base);
}

.swiper-pagination-bullet-active {
    opacity: 1;
    width: 40px;
    border-radius: 6px;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
    opacity: 0;
}

.delay-2 {
    animation-delay: 0.4s;
    opacity: 0;
}

/* ====================================
   SECTION HEADERS
   ==================================== */
.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    margin: 0 auto 20px;
    border-radius: 10px;
}

.section-description {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

/* ====================================
   WELCOME SECTION
   ==================================== */
.welcome-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.welcome-card {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 1px solid rgba(5, 191, 219, 0.1);
}

.welcome-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.welcome-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.welcome-icon i {
    font-size: 32px;
    color: var(--white);
}

.welcome-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

.welcome-card strong {
    color: var(--secondary-color);
    font-weight: 700;
}

/* ====================================
   FEATURES SECTION
   ==================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-base);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    opacity: 0;
    transition: var(--transition-base);
    z-index: 0;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
}

.feature-card>* {
    position: relative;
    z-index: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition-base);
}

.feature-card:hover .feature-icon {
    background: var(--white);
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 35px;
    color: var(--white);
    transition: var(--transition-base);
}

.feature-card:hover .feature-icon i {
    color: var(--accent-color);
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
    transition: var(--transition-base);
}

.feature-card:hover .feature-title {
    color: var(--white);
}

.feature-description {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    transition: var(--transition-base);
}

.feature-card:hover .feature-description {
    color: var(--white);
}

/* ====================================
   VIDEO SECTION
   ==================================== */
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 */
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ====================================
   LOCATION SECTION
   ==================================== */
.map-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    width: 100%;
    filter: grayscale(20%);
    transition: var(--transition-base);
}

.map-container:hover iframe {
    filter: grayscale(0%);
}

/* ====================================
   FOOTER
   ==================================== */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 80px 0 30px;
}

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

.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-list a {
    color: var(--text-light);
    transition: var(--transition-base);
    display: inline-block;
}

.footer-list a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact i {
    color: var(--accent-color);
    font-size: 16px;
    min-width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 14px;
}

/* ====================================
   WHATSAPP FLOAT BUTTON
   ==================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-toggle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition-base);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    }
}

.whatsapp-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-toggle i {
    font-size: 35px;
    color: var(--white);
}

.whatsapp-menu {
    position: absolute;
    bottom: 80px;
    right: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    width: 300px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: var(--transition-base);
}

.whatsapp-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.whatsapp-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.whatsapp-header span {
    font-weight: 600;
    font-size: 16px;
}

.whatsapp-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.whatsapp-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.whatsapp-options {
    padding: 15px;
}

.whatsapp-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    margin-bottom: 10px;
    border: 2px solid transparent;
}

.whatsapp-option:last-child {
    margin-bottom: 0;
}

.whatsapp-option:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: #25D366;
    transform: translateX(5px);
}

.whatsapp-option i {
    font-size: 35px;
    color: #25D366;
}

.whatsapp-info {
    display: flex;
    flex-direction: column;
}

.whatsapp-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.whatsapp-number {
    color: var(--text-gray);
    font-size: 14px;
}

/* ====================================
   RESPONSIVE
   ==================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .nav-list {
        gap: 20px;
    }

    .nav-link {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    /* Aumentar tamaño de fuente base para móvil */
    body {
        font-size: 18px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 128px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 128px);
        background: var(--white);
        transition: var(--transition-base);
        box-shadow: var(--shadow-lg);
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        padding: 40px 20px;
        gap: 0;
    }

    .nav-item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-link {
        display: block;
        padding: 20px;
        font-size: 18px;
    }

    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .contact-item {
        font-size: 16px;
    }

    /* Títulos de sección más grandes */
    .section-title {
        font-size: 36px;
    }

    .section-description {
        font-size: 19px;
    }

    /* Página de complejo */
    .complejo-text h3 {
        font-size: 28px;
    }

    .complejo-text p {
        font-size: 18px;
    }

    /* Tarjetas de amenidades */
    .amenity-title {
        font-size: 20px;
    }

    .amenity-description {
        font-size: 17px;
    }

    /* Tarjetas de apartamentos */
    .apart-title {
        font-size: 24px;
    }

    .apart-description {
        font-size: 18px;
    }

    .apart-capacity span {
        font-size: 17px;
    }

    /* Tarjetas de ubicación */
    .location-content h3 {
        font-size: 24px;
    }

    .location-content p {
        font-size: 18px;
    }

    .location-content .distance {
        font-size: 20px;
    }

    /* Títulos de características */
    .feature-title {
        font-size: 24px;
    }

    .feature-description {
        font-size: 17px;
    }

    /* Botones */
    .btn {
        font-size: 17px;
        padding: 16px 35px;
    }

    /* Footer */
    .footer-title {
        font-size: 22px;
    }

    .footer-list a {
        font-size: 17px;
    }

    .footer-bottom p {
        font-size: 16px;
    }

    /* CTA Section */
    .cta-title {
        font-size: 32px;
    }

    .cta-description {
        font-size: 19px;
    }

    /* Page Header */
    .page-title {
        font-size: 36px;
    }

    .page-subtitle {
        font-size: 20px;
    }

    .breadcrumb {
        font-size: 16px;
    }

    .welcome-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-toggle {
        width: 55px;
        height: 55px;
    }

    .whatsapp-toggle i {
        font-size: 28px;
    }

    .whatsapp-menu {
        width: calc(100vw - 40px);
        right: -10px;
    }

    .whatsapp-header span {
        font-size: 18px;
    }

    .whatsapp-name {
        font-size: 17px;
    }

    .whatsapp-number {
        font-size: 16px;
    }
}

@media (max-width: 480px) {

    /* Aumentar tamaño de fuente base para móviles pequeños */
    body {
        font-size: 17px;
    }

    .header-top {
        padding: 8px 0;
    }

    .contact-item {
        font-size: 15px;
    }

    .logo img {
        height: 50px;
    }

    /* Títulos */
    .section-title {
        font-size: 32px;
    }

    .section-description {
        font-size: 18px;
    }

    .page-title {
        font-size: 32px;
    }

    .page-subtitle {
        font-size: 19px;
    }

    /* Botones */
    .btn {
        padding: 15px 32px;
        font-size: 16px;
    }

    /* Tarjetas */
    .welcome-card,
    .feature-card {
        padding: 30px 20px;
    }

    .feature-title {
        font-size: 22px;
    }

    .feature-description {
        font-size: 16px;
    }

    /* Apartamentos */
    .apart-title {
        font-size: 22px;
    }

    .apart-description {
        font-size: 17px;
    }

    /* Amenidades */
    .amenity-title {
        font-size: 19px;
    }

    .amenity-description {
        font-size: 16px;
    }

    /* Ubicación */
    .location-content h3 {
        font-size: 22px;
    }

    .location-content p {
        font-size: 17px;
    }

    /* Footer */
    .footer-title {
        font-size: 20px;
    }

    .footer-list a {
        font-size: 16px;
    }

    .footer-bottom p {
        font-size: 15px;
    }

    /* CTA */
    .cta-title {
        font-size: 28px;
    }

    .cta-description {
        font-size: 18px;
    }
}

/* ====================================
   UTILITY CLASSES
   ==================================== */
.text-primary {
    color: var(--primary-color);
}

.text-secondary {
    color: var(--secondary-color);
}

.text-accent {
    color: var(--accent-color);
}

.bg-primary {
    background: var(--primary-color);
}

.bg-gradient {
    background: var(--gradient-primary);
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

/* ====================================
   ADDITIONAL PAGE STYLES
   ==================================== */

/* Image Placeholders */
.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 250px;
    background: linear-gradient(135deg, #E5E7EB 0%, #F3F4F6 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
    border-radius: var(--radius-md);
}

.image-placeholder i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.image-placeholder p {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    margin: 0;
    padding: 0 20px;
}

.image-placeholder small {
    font-size: 12px;
    opacity: 0.7;
    font-weight: 400;
    display: block;
    margin-top: 5px;
}

/* Complejo Page */
.complejo-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

.complejo-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.complejo-text h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.complejo-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.stat-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 32px;
    color: var(--white);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-gray);
    font-weight: 600;
}

/* Location Grid */
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.location-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

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

.location-image {
    height: 200px;
    overflow: hidden;
}

.location-content {
    padding: 30px;
}

.location-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-content .distance {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.service-card.featured {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 32px;
    color: var(--white);
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.service-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.service-features i {
    color: var(--accent-color);
}

/* Additional Services */
.additional-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.additional-service {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.additional-service:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.additional-service i {
    font-size: 24px;
    color: var(--accent-color);
}

.additional-service span {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Directions Page */
.address-card {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--accent-color);
}

.address-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.address-icon i {
    font-size: 48px;
    color: var(--white);
}

.address-info h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.address-text {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.directions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.direction-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.direction-card.featured {
    border: 2px solid var(--accent-color);
}

.direction-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 30px;
}

.direction-header i {
    font-size: 32px;
    margin-bottom: 15px;
}

.direction-header h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.direction-header .distance {
    font-size: 14px;
    opacity: 0.9;
}

.direction-content {
    padding: 30px;
}

.direction-steps {
    padding-left: 20px;
    margin-bottom: 20px;
}

.direction-steps li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.direction-tip {
    background: rgba(5, 191, 219, 0.1);
    padding: 15px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent-color);
    display: flex;
    gap: 10px;
    font-size: 14px;
    color: var(--text-dark);
}

.direction-tip i {
    color: var(--accent-color);
    margin-top: 2px;
}

.direction-distances {
    margin-top: 20px;
}

.direction-distances h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.direction-distances ul {
    list-style: none;
    padding: 0;
}

.direction-distances li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 15px;
}

.direction-distances i {
    color: var(--accent-color);
}

/* Transport Grid */
.transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.transport-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

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

.transport-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.transport-icon i {
    font-size: 32px;
    color: var(--white);
}

.transport-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.map-header {
    text-align: center;
    padding: 40px 20px;
    background: var(--light-color);
}

.map-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.help-card {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.help-card i {
    font-size: 64px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.help-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.help-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Monte Hermoso Page */
.monte-intro {
    max-width: 900px;
    margin: 50px auto 0;
}

.monte-text h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.monte-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.monte-highlight {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    padding: 40px;
    border-radius: var(--radius-lg);
    margin-top: 30px;
}

.monte-highlight i {
    font-size: 64px;
    margin-bottom: 20px;
}

.monte-highlight h4 {
    font-size: 24px;
    margin-bottom: 10px;
}

/* Activities Grid */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.activity-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.activity-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.activity-icon i {
    font-size: 28px;
    color: var(--white);
}

.activity-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* POI Grid */
.poi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.poi-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.poi-image {
    height: 200px;
}

.poi-content {
    padding: 30px;
}

.poi-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Weather Card */
.weather-card {
    display: flex;
    gap: 40px;
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.weather-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.weather-icon i {
    font-size: 48px;
    color: var(--white);
}

.weather-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.weather-stats {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.weather-stat {
    display: flex;
    align-items: center;
    gap: 10px;
}

.weather-stat i {
    font-size: 24px;
    color: var(--accent-color);
}

/* Ecological Page */
.eco-intro {
    max-width: 900px;
    margin: 50px auto 0;
    text-align: center;
}

.eco-icon-large {
    width: 120px;
    height: 120px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.eco-icon-large i {
    font-size: 64px;
    color: var(--white);
}

.eco-text h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.eco-practices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmin(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.eco-practice {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.eco-practice:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.eco-practice-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.eco-practice-icon i {
    font-size: 32px;
    color: var(--white);
}

.eco-practice h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Beach Care */
.beach-care-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.beach-care-image {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.beach-care-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.beach-care-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.beach-care-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
}

.beach-care-list i {
    color: #10B981;
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.tip-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.tip-card i {
    font-size: 40px;
    color: #10B981;
    margin-bottom: 15px;
}

.tip-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Commitment Card */
.commitment-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.commitment-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.commitment-icon i {
    font-size: 48px;
    color: var(--white);
}

.commitment-card h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
}

.commitment-card p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.commitment-quote {
    background: rgba(5, 191, 219, 0.1);
    padding: 30px;
    border-radius: var(--radius-md);
    margin-top: 40px;
}

.commitment-quote i {
    font-size: 32px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.commitment-quote blockquote {
    font-size: 20px;
    font-style: italic;
    color: var(--text-dark);
    margin: 20px 0;
}

.commitment-quote cite {
    font-size: 16px;
    color: var(--text-gray);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {

    .complejo-intro,
    .beach-care-card {
        grid-template-columns: 1fr;
    }

    .address-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .weather-card {
        flex-direction: column;
        text-align: center;
    }

    .commitment-card {
        padding: 40px 30px;
    }
}