/* ============================================
   PARADISE PUNTA IZOPO - STYLES.CSS
   ============================================ */

/* RESET Y VARIABLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colores principales */
    --primary-color: #5daba8;
    --primary-dark: #4a8a87;
    --primary-light: #7bc2bf;
    --secondary-color: #1a4d4a;
    --dark-green: #1e3a3a;
    --light-bg: #f5f9f9;
    --white: #ffffff;
    --black: #1a1a1a;
    --text-dark: #2d4a49;
    --text-light: #6b8584;
    
    /* Fuentes */
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    background: var(--light-bg);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-primary {
    padding: 0.7rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
     background: url('images/Hero.png') center/cover no-repeat;
     
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 58, 58, 0.85) 0%, rgba(93, 171, 168, 0.7) 100%);
    z-index: -1;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-secondary {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    padding: 1rem 2rem;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    border: 2px solid var(--white);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

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

.hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
}

.hero-phone i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

/* Formulario Hero */
.hero-form-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.hero-form-card h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.hero-form-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.contact-form input {
    width: 100%;
    padding: 0.9rem;
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(93, 171, 168, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.form-privacy {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 1rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(29, 58, 58, 0.95) 0%, rgba(93, 171, 168, 0.9) 100%),
                url('images/about-bg.jpg') center/cover;
    color: var(--white);
       
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(29, 58, 58, 0.3);
    z-index: 0;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

.section-label {
    display: inline-block;
    color: var(--primary-light);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.about-text {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.divider {
    width: 100px;
    height: 3px;
    background: var(--primary-color);
    margin: 3rem 0;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 4rem;
}

/* Estadísticas */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* ============================================
   RESIDENCES SECTION
   ============================================ */
.residences-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.section-title {
    font-size: 2.8rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 1rem;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.filter-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    color: var(--secondary-color);
    font-weight: 600;
    margin: 0 auto 3rem;
    display: flex;
    justify-content: center;
    width: fit-content;
}

.residences-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.residence-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    max-width: 480px;   /* ← AGREGA ESTA LÍNEA */
    width: 100%;         /* ← AGREGA ESTA LÍNEA */
}

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

.residence-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.residence-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.badge-sale {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 20px;
}

.badge-phase {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(29, 58, 58, 0.9);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
}

.residence-content {
    padding: 1.5rem;
}

.residence-title {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.residence-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.spec-item i {
    color: var(--primary-color);
    font-size: 1rem;
}

.residence-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.amenity-tag {
    padding: 0.4rem 0.8rem;
    background: var(--light-bg);
    color: var(--primary-color);
    font-size: 0.85rem;
    border-radius: 20px;
}

.btn-residence {
    display: block;
    width: 100%;
    padding: 0.9rem;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-residence:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.residences-cta {
    text-align: center;
    margin-top: 3rem;
}

.residences-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.btn-outline-dark {
    display: inline-block;
    padding: 1rem 2rem;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* ============================================
   ATTRACTIONS SECTION
   ============================================ */
.attractions-section {
    padding: 6rem 0;
    background: var(--white);
}

.attractions-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.attractions-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.attraction-item {
    display: flex;
    gap: 1.5rem;
}

.attraction-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: var(--light-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.attraction-info h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.attraction-info p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.attraction-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.map-container {
    background: var(--light-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.map-header {
    padding: 1.5rem;
    background: var(--white);
}

.map-header i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.map-header h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
}

.map-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.btn-map {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-map:hover {
    background: var(--primary-dark);
}

/* ============================================
   VIRTUAL TOUR SECTION
   ============================================ */
.virtual-tour-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.tour-selector {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tour-btn {
    padding: 0.8rem 2rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tour-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.tour-btn.active {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.tour-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--primary-color);
    background: var(--secondary-color);
}

.tour-container iframe {
    display: block;
    width: 100%;
    height: 600px;
    border: none;
}

@media (max-width: 640px) {
    .tour-container iframe {
        height: 350px;
    }

    .tour-btn {
        padding: 0.7rem 1.3rem;
        font-size: 0.9rem;
    }
}


/* ============================================
   INTERIORS SECTION
   ============================================ */
.interiors-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.interiors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.interior-item {
    position: relative;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.interior-item.large {
    grid-row: span 2;
    height: 100%;
}

.interior-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.interior-item:hover img {
    transform: scale(1.1);
}

.interior-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.interior-item:hover .interior-overlay {
    opacity: 1;
}

.interior-badge {
    padding: 0.5rem 1rem;
    background: var(--secondary-color);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(29, 58, 58, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.lightbox-content {
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
}

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

.lightbox-badge {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.lightbox-subtitle {
    color: var(--white);
    font-size: 1.2rem;
}

/* ============================================
   CONTACTO SECTION
   ============================================ */
.contacto-section {
    padding: 6rem 0;
    background: var(--white);
}

.contacto-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contacto-info h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: var(--light-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.info-text h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
}

.info-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-text a:hover {
    color: var(--primary-dark);
}

.info-text p {
    color: var(--text-light);
}

.contacto-map {
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.contacto-form-container {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 16px;
}

.contacto-form-container h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.contacto-form-container > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.main-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.form-group label {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-main);
    transition: all 0.3s ease;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.btn-submit-main {
    padding: 1rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-main:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.form-response {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

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

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark-green);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.footer-subtitle {
    color: var(--primary-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.footer-description {
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-light);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 3px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-light);
}

/* ============================================
   BOTÓN FLOTANTE
   ============================================ */
.floating-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-form-card {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .residences-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .attractions-content {
        grid-template-columns: 1fr;
    }
    
    .interiors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contacto-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .residences-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .interiors-grid {
        grid-template-columns: 1fr;
    }
    
    .interior-item {
        height: 250px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        bottom: 1.5rem;
        right: 1.5rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll suave para elementos */
section {
    scroll-margin-top: 80px;
}

/* Estados de carga */
.loading {
    pointer-events: none;
    opacity: 0.6;
}

/* Placeholder para imágenes */
img {
    background: #f0f0f0;
}

/* ============================================
   GALLERY — Carrusel tipo Apple
   ============================================ */

.gallery-section {
    background: #fff;
    padding: 90px 0 100px;
    border-top: 1px solid #eef2f2;
    overflow: hidden;
}

.gallery-header-wrap {
    margin-bottom: 2.5rem;
}

.gallery-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

/* Flechas navegación */
.gallery-arrows {
    display: flex;
    gap: 0.5rem;
}

.gal-arrow-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid #d0d9d9;
    background: #fff;
    color: var(--secondary-color);
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.22s ease;
}

.gal-arrow-btn:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
}

/* Track exterior — permite scroll horizontal */
.gal-track-outer {
    padding-left: calc((100vw - 1280px) / 2);
    padding-left: max(2rem, calc((100vw - 1280px) / 2));
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.gal-track-outer.is-dragging {
    cursor: grabbing;
}

.gal-track {
    display: flex;
    gap: 16px;
    width: max-content;
    transition: transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    padding-right: 3rem;
}

/* Cada slide */
.gal-slide {
    flex: 0 0 300px;
    width: 300px;
}

@media (max-width: 768px) {
    .gal-slide { flex: 0 0 260px; width: 260px; }
}

@media (max-width: 480px) {
    .gal-slide { flex: 0 0 220px; width: 220px; }
    .gal-track-outer { padding-left: 1.5rem; }
}

.gal-slide-inner {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #111;
    aspect-ratio: 3 / 4;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gal-slide-inner:hover {
    transform: scale(1.025);
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

/* Imagen de fondo */
.gal-slide-inner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 1;
    transition: transform 0.5s ease;
    pointer-events: none;
}

.gal-slide-inner:hover img {
    transform: scale(1.04);
    opacity: 1;
}

/* Gradiente superior para legibilidad del texto */
.gal-slide-inner::before {
    display: none;
}

/* Texto arriba a la izquierda */
.gal-slide-text {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 2;
    pointer-events: none;
}

.gal-slide-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 6px;
}

.gal-slide-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    margin: 0;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

/* Botón + abajo a la derecha */
.gal-slide-plus {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 3;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.12);
    color: #fff;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.22s ease;
    backdrop-filter: blur(6px);
}

.gal-slide-plus:hover {
    background: rgba(255,255,255,0.28);
    border-color: rgba(255,255,255,0.9);
    transform: scale(1.08);
}

/* ============================================
   LIGHTBOX
   ============================================ */

.gal-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
}

.gal-lightbox.open {
    opacity: 1;
    pointer-events: all;
}

.gal-lb-bg {
    position: absolute;
    inset: 0;
    background: rgba(6, 16, 16, 0.96);
    backdrop-filter: blur(14px);
    cursor: pointer;
}

.gal-lb-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    max-width: 88vw;
}

.gal-lb-wrap img {
    max-width: 100%;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 10px;
    transition: opacity 0.18s ease;
    box-shadow: 0 30px 80px rgba(0,0,0,0.55);
}

.gal-lb-caption { text-align: center; }

.gal-lb-caption span {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 3px;
}

.gal-lb-caption p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin: 0;
}

.gal-lb-close {
    position: fixed;
    top: 18px;
    right: 22px;
    z-index: 3;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.85rem;
    transition: background 0.2s;
}

.gal-lb-close:hover { background: rgba(255,255,255,0.16); }

.gal-lb-arrow-lb {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.gal-lb-arrow-lb:hover { background: rgba(255,255,255,0.16); }
.gal-lb-prev { left: 18px; }
.gal-lb-next { right: 18px; }

.gal-slide-text,
.gal-slide-plus {
    display: none;
}




/* ============================================
   FIN DE ESTILOS
   ============================================ */