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

:root {
    /* Brand Colors */
    --navy-base: #0B132B;
    --slate: #344054;
    --emerald: #12B886;
    --sand: #E9D8C3;
    --blanco: #FFFFFF;
    
    /* Color Usage */
    --primary-color: var(--emerald);
    --primary-hover: #0ea572;
    --secondary-color: var(--navy-base);
    --text-dark: var(--navy-base);
    --text-medium: var(--slate);
    --text-light: #6B7280;
    --bg-light: #F5F7FA;
    --bg-white: var(--blanco);
    --border-color: #E5E7EB;
    --shadow: 0px 1px 3px 0px rgba(11, 19, 43, 0.1);
    --shadow-lg: 0px 4px 12px rgba(11, 19, 43, 0.15);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.25rem;
}

h2 {
    font-size: 1.875rem;
}

h3 {
    font-size: 1.5rem;
}

h6 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

a:hover {
    color: var(--primary-hover);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(18, 184, 134, 0.3);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(18, 184, 134, 0.4);
}

.btn-large {
    padding: 18px 36px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(11, 19, 43, 0.08);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

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

.logo {
    flex-shrink: 0;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    max-width: 180px;
    display: block;
}

.nav-menu {
    display: flex;
    flex: 1;
    justify-content: center;
}

.menu-list {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.menu-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.menu-link:hover {
    color: var(--primary-color);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.header-cta {
    display: flex;
    flex-shrink: 0;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 75px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-text {
    font-size: 1.4rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 2rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 19, 43, 0.7), rgba(52, 64, 84, 0.5));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 40px 20px;
}

.hero-subtitle {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.9);
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.hero-text {
    font-size: 1.25rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    color: var(--primary-color);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 2px;
    background: var(--primary-color);
}

.section-title {
    font-size: 2.75rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.15rem;
    color: var(--text-medium);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}

/* Situaciones Section */
.situaciones {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
    padding: 100px 0;
}

.situaciones-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.situacion-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.situacion-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.situacion-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.situacion-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Video Section */
.video-section {
    padding: 60px 0;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

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

/* Beneficios Section */
.beneficios {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.beneficio-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(11, 19, 43, 0.08);
    transition: var(--transition);
    border: 2px solid rgba(11, 19, 43, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.beneficio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(11, 19, 43, 0.15);
    border-color: var(--primary-color);
}

.beneficio-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--bg-light);
}

.beneficio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

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

.beneficio-text-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.beneficio-title {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin: 0 0 12px 0;
    font-weight: 700;
    line-height: 1.3;
}

.beneficio-description {
    font-size: 1rem;
    color: var(--text-medium);
    margin: 0;
    line-height: 1.7;
    flex: 1;
}

/* Responsive para beneficios */
@media (max-width: 768px) {
    .beneficios-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .beneficio-image-wrapper {
        height: 200px;
    }
    
    .beneficio-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* Como Funciona Section */
.como-funciona {
    background: var(--bg-white);
    padding: 100px 0;
    position: relative;
}

.pasos-container {
    max-width: 1000px;
    margin: 0 auto;
}

.paso-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: flex-start;
    position: relative;
}

.paso-item:last-child {
    margin-bottom: 0;
}

.paso-item:nth-child(even) {
    flex-direction: row-reverse;
}

.paso-item:nth-child(even) .paso-text-content {
    text-align: right;
}

.paso-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    flex-shrink: 0;
    opacity: 0.2;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-width: 80px;
    text-align: center;
}

.paso-content-wrapper {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.paso-item:nth-child(even) .paso-content-wrapper {
    grid-template-columns: 1fr 1fr;
}

.paso-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(11, 19, 43, 0.12);
    transition: var(--transition);
}

.paso-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(11, 19, 43, 0.18);
}

.paso-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/3;
}

.paso-text-content {
    padding: 20px 0;
}

.paso-title {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin: 0 0 15px 0;
    font-weight: 700;
    line-height: 1.3;
}

.paso-description {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin: 0;
    line-height: 1.7;
}

/* Responsive para pasos */
@media (max-width: 768px) {
    .paso-item {
        flex-direction: column !important;
        gap: 20px;
    }
    
    .paso-item:nth-child(even) {
        flex-direction: column !important;
    }
    
    .paso-item:nth-child(even) .paso-text-content {
        text-align: left;
    }
    
    .paso-content-wrapper {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .paso-number {
        font-size: 3rem;
        min-width: 60px;
    }
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, var(--navy-base) 0%, var(--slate) 100%);
    color: white;
    padding: 80px 0;
}

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

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

.stat-title {
    font-size: 1rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

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

/* Sobre Nosotros Section */
.sobre-nosotros {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
}

.sobre-content-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.sobre-text-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sobre-intro-block {
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(11, 19, 43, 0.08);
    border-left: 4px solid var(--primary-color);
}

.sobre-intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.sobre-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.4;
    margin: 0;
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, rgba(18, 184, 134, 0.1) 0%, rgba(18, 184, 134, 0.05) 100%);
    border-radius: 12px;
    border: 2px solid rgba(18, 184, 134, 0.2);
}

.sobre-problem-block {
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(11, 19, 43, 0.08);
    border-left: 4px solid var(--primary-color);
}

.sobre-problem-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.sobre-solution-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.5;
    margin: 0;
    text-align: center;
    padding: 20px;
    background: rgba(18, 184, 134, 0.08);
    border-radius: 12px;
}

.sobre-image-section {
    position: relative;
}

.sobre-main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(11, 19, 43, 0.15);
    object-fit: cover;
    aspect-ratio: 4/3;
}

.sobre-objectives {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.objetivo-card {
    padding: 50px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(11, 19, 43, 0.08);
    transition: var(--transition);
    border: 2px solid rgba(11, 19, 43, 0.05);
    text-align: center;
}

.objetivo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(11, 19, 43, 0.15);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(245, 247, 250, 1) 100%);
}

.objetivo-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(18, 184, 134, 0.15) 0%, rgba(18, 184, 134, 0.08) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    padding: 20px;
    border: 2px solid rgba(18, 184, 134, 0.2);
}

.objetivo-icon svg {
    width: 100%;
    height: 100%;
}

.objetivo-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.objetivo-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
}

/* Responsive para sobre nosotros */
@media (max-width: 968px) {
    .sobre-content-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sobre-objectives {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Por qué es diferente Section */
.por-que-diferente {
    padding: 100px 0;
    background: var(--bg-white);
    position: relative;
}

.diferente-container {
    max-width: 1000px;
    margin: 0 auto;
}

.diferente-item {
    margin-bottom: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(11, 19, 43, 0.08);
    transition: var(--transition);
    border: 2px solid rgba(11, 19, 43, 0.05);
    overflow: hidden;
}

.diferente-item:last-child {
    margin-bottom: 0;
}

.diferente-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(11, 19, 43, 0.15);
    border-color: var(--primary-color);
}

.diferente-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 40px;
}

.diferente-icon-wrapper {
    flex-shrink: 0;
}

.diferente-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(18, 184, 134, 0.3);
}

.diferente-text-wrapper {
    flex: 1;
    padding-top: 5px;
}

.diferente-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

.diferente-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin: 0;
}

/* Responsive para diferente */
@media (max-width: 768px) {
    .diferente-content {
        flex-direction: column;
        gap: 20px;
        padding: 30px;
        text-align: center;
    }
    
    .diferente-icon {
        margin: 0 auto;
    }
}

/* Testimonial Banner */
.testimonial-banner {
    background: linear-gradient(135deg, var(--navy-base) 0%, var(--slate) 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonial-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 40%;
    height: 200%;
    background: radial-gradient(circle, rgba(18, 184, 134, 0.15) 0%, transparent 70%);
    transform: rotate(15deg);
    z-index: 1;
}

.testimonial-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.testimonial-icon {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    color: white;
    opacity: 0.9;
}

.testimonial-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
    color: white;
}

.testimonial-quote {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.testimonial-author {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Propietarios Section */
.propietarios {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
}

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

.propietarios-text {
    font-size: 1.2rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.propietarios-text .section-title {
    margin-bottom: 20px;
    text-align: left;
}

.propietarios-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.propietarios-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

/* Habitaciones Section */
.habitaciones {
    padding: 100px 0;
    background: var(--bg-white);
    position: relative;
}

.habitaciones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.habitacion-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(11, 19, 43, 0.08);
    transition: var(--transition);
    overflow: hidden;
    border: 1px solid rgba(11, 19, 43, 0.05);
}

.habitacion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(11, 19, 43, 0.15);
    border-color: rgba(18, 184, 134, 0.2);
}

.habitacion-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.habitacion-gallery {
    display: flex;
    gap: 4px;
    padding: 4px;
    background: var(--bg-light);
}

.habitacion-gallery-item {
    flex: 1;
    height: 60px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.7;
}

.habitacion-gallery-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

.habitacion-image {
    cursor: pointer;
}

.habitacion-card .habitacion-title,
.habitacion-card .habitacion-location {
    padding: 20px;
    text-align: center;
}

.habitacion-title {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.habitacion-location {
    color: var(--text-medium);
    font-size: 0.95rem;
}


/* Testimonios Section */
.testimonios {
    background: var(--bg-light);
    padding: 100px 0;
    position: relative;
}

.testimonios-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonio-slide {
    display: none;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(11, 19, 43, 0.12);
    border: 1px solid rgba(11, 19, 43, 0.05);
}

.testimonio-slide.active {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.testimonio-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonio-author {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
}

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

.testimonio-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(18, 184, 134, 0.3);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(11, 19, 43, 0.15);
    background: white;
    color: var(--text-dark);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(11, 19, 43, 0.1);
    font-weight: 600;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(18, 184, 134, 0.3);
    transform: scale(1.05);
}

/* Contacto Section */
.contacto {
    padding: 100px 0;
    background: var(--bg-white);
}

.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(4, 107, 210, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    flex-shrink: 0;
}

.contacto-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contacto-item {
    padding: 40px;
    background: white;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid rgba(11, 19, 43, 0.05);
    box-shadow: 0 4px 20px rgba(11, 19, 43, 0.06);
}

.contacto-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(11, 19, 43, 0.12);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, white 0%, rgba(18, 184, 134, 0.02) 100%);
}

.contacto-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    color: var(--primary-color);
}

.contacto-icon svg {
    width: 100%;
    height: 100%;
}

.contacto-item-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contacto-item-text {
    color: var(--text-medium);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-logo {
    text-align: center;
    margin-bottom: 50px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    opacity: 0.9;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.footer-logo-img:hover {
    opacity: 1;
    transform: scale(1.05);
}

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

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-menu a {
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
}

.footer-menu a:hover {
    color: white;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

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

.footer-bottom a {
    color: rgba(255,255,255,0.9);
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 999;
}

.scroll-top:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
}

.scroll-top.visible {
    display: flex;
}

.scroll-top svg {
    width: 24px;
    height: 24px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .propietarios-content {
        grid-template-columns: 1fr;
    }
    
    .contacto-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background: white;
        flex-direction: column;
        padding: 40px 20px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .menu-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
        width: 100%;
    }
    
    .menu-link {
        font-size: 1.1rem;
        width: 100%;
        padding: 10px 0;
    }
    
    .menu-link::after {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    
    .header-content {
        gap: 15px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .hero {
        margin-top: 70px;
        min-height: 80vh;
    }
    
    .hero-slide {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .situaciones-list {
        grid-template-columns: 1fr;
    }
    
    .beneficios-grid {
        grid-template-columns: 1fr;
    }
    
    .pasos-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonio-slide.active {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contacto-info-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .habitacion-image {
        height: 180px;
        background-size: cover;
        background-position: center;
    }
    
    .habitaciones-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .paso-image {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    
    .sobre-main-image {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    
    .propietarios-image img {
        width: 100%;
        height: auto;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .btn-large {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .hero-slide {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    .habitacion-image {
        height: 160px;
    }
    
    .beneficio-image-wrapper {
        height: 180px;
    }
    
    .paso-image-wrapper {
        width: 100%;
    }
    
    .paso-image {
        width: 100%;
        height: auto;
        min-height: 200px;
        object-fit: cover;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
}

/* Photo Lightbox */
.photo-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.photo-lightbox.active {
    display: flex;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 19, 43, 0.95);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    z-index: 10001;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10002;
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-close svg,
.lightbox-prev svg,
.lightbox-next svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
    }
    
    .lightbox-close svg,
    .lightbox-prev svg,
    .lightbox-next svg {
        width: 20px;
        height: 20px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
    }
}

