/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D4AF37;
    --gold-light: #F4E4B1;
    --gold-dark: #B8941E;
    --black: #1a1a1a;
    --black-soft: #2d2d2d;
    --gray-dark: #4a4a4a;
    --gray-medium: #6b6b6b;
    --gray-light: #d4d4d4;
    --gray-lighter: #f5f5f5;
    --white: #ffffff;
    --cream: #FAF8F3;
    --warm-white: #FFFCF7;
    
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-light: #6b6b6b;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 48px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.25);
    
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4E4B1 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    --gradient-elegant: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(244, 228, 177, 0.05) 100%);
    
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--warm-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 252, 247, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo h2 {
    font-family: 'Playfair Display', serif;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: -0.5px;
}

/* Menu siempre oculto, usaremos overlay */
.nav-menu {
    display: none;
}


.nav-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    z-index: 10002;
    position: relative;
}

.bar {
    width: 28px;
    height: 2.5px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.nav-toggle.active .bar {
    background: var(--gold);
}

.nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* Full Screen Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--gradient-dark);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s;
}

.menu-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    z-index: 1;
}

.menu-links {
    list-style: none;
    text-align: center;
    margin-bottom: 4rem;
}

.menu-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.menu-overlay.active .menu-item {
    opacity: 1;
    transform: translateY(0);
}

.menu-overlay.active .menu-item:nth-child(1) {
    transition-delay: 0.1s;
}

.menu-overlay.active .menu-item:nth-child(2) {
    transition-delay: 0.2s;
}

.menu-overlay.active .menu-item:nth-child(3) {
    transition-delay: 0.3s;
}

.menu-overlay.active .menu-item:nth-child(4) {
    transition-delay: 0.4s;
}

.menu-link {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    display: inline-block;
    padding: 1rem 0;
    position: relative;
    transition: var(--transition);
    letter-spacing: -1px;
}

.menu-link:hover {
    color: var(--gold);
    transform: translateX(20px);
}

.menu-footer {
    position: absolute;
    bottom: 3rem;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease 0.5s, transform 0.5s ease 0.5s;
}

.menu-overlay.active .menu-footer {
    opacity: 1;
    transform: translateY(0);
}

/* Menu Close Button */
.menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10001;
    transition: var(--transition);
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

.menu-overlay.active .menu-close {
    opacity: 1;
    transform: rotate(0) scale(1);
    transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s;
}

.menu-close:hover {
    background: var(--gold);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.menu-close i {
    font-size: 1.5rem;
    color: var(--gold);
    transition: var(--transition);
}

.menu-close:hover i {
    color: var(--black);
}

.menu-social {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.menu-social a {
    width: 50px;
    height: 50px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    transition: var(--transition);
}

.menu-social a:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-5px);
}

.menu-email {
    color: var(--gray-light);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* Hero Section with Carousel */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

/* Hero Carousel */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s 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(26, 26, 26, 0.85) 0%, rgba(26, 26, 26, 0.75) 100%);
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-content {
    color: var(--white);
    max-width: 900px;
}

.hero-subtitle-top {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.85);
    animation: fadeInUp 1s ease-out 0.4s both;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.6s both;
    justify-content: center;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    animation: fadeInUp 1s ease-out 0.8s both;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    justify-content: center;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}


/* Buttons */
.btn {
    padding: 14px 36px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--black);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: var(--gold);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-light);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.05rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Sobre Mí Section */
.sobre-mi {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.sobre-mi-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.sobre-mi-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.08;
}

.sobre-mi-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98));
}

.sobre-mi .container {
    position: relative;
    z-index: 1;
}

.about-content {
    max-width: 1100px;
    margin: 0 auto;
}

.about-text {
    text-align: center;
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.expertise-item {
    background: var(--gradient-elegant);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: var(--transition);
    text-align: center;
}

.expertise-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(244, 228, 177, 0.1) 100%);
}

.expertise-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-gold);
}

.expertise-icon i {
    font-size: 2rem;
    color: var(--black);
}

.expertise-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.expertise-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Nomad Section - Rediseñada con enfoque visual/ventas */
.nomad {
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.nomad-header {
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.nomad-badge {
    display: inline-block;
    padding: 8px 24px;
    background: var(--gradient-gold);
    color: var(--black);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.nomad-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.nomad-tagline {
    font-size: 1.4rem;
    color: var(--gray-light);
    font-weight: 300;
}

/* Nomad Hero Visual */
.nomad-hero-visual {
    padding: 80px 0;
    position: relative;
}

.nomad-hero-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.nomad-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.nomad-hero-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.nomad-description {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--gray-light);
    margin-bottom: 3rem;
}

.nomad-description strong {
    color: var(--gold);
    font-weight: 600;
}

.nomad-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.nomad-stat {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.nomad-stat:hover {
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.1);
    box-shadow: var(--shadow-gold);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Visual Cards replaced by Image Grid */
.nomad-hero-visual-element {
    position: relative;
    height: 500px;
    width: 100%;
}

.nomad-image-grid {
    position: relative;
    width: 100%;
    height: 100%;
}

.grid-image {
    position: absolute;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.grid-image:hover {
    transform: scale(1.02);
    border-color: var(--gold);
    z-index: 10;
}

.img-main {
    width: 65%;
    height: 80%;
    top: 0;
    left: 0;
    z-index: 1;
}

.img-secondary {
    width: 45%;
    height: 50%;
    bottom: 0;
    right: 0;
    z-index: 2;
}

.img-tertiary {
    width: 35%;
    height: 35%;
    top: 10%;
    right: 5%;
    z-index: 3;
    border: 2px solid var(--gold);
}

.floating-badge {
    position: absolute;
    bottom: 10%;
    left: 5%;
    background: var(--gradient-gold);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: var(--shadow-lg);
    z-index: 4;
    animation: float 4s ease-in-out infinite;
}

.floating-badge i {
    font-size: 1.5rem;
    color: var(--black);
}

.floating-badge span {
    font-weight: 700;
    color: var(--black);
    font-size: 1rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Nomad Video Section */
.nomad-video-section {
    padding: 0 0 100px;
    background: var(--black);
    position: relative;
    z-index: 2;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: var(--transition);
    cursor: pointer;
}

.video-container:hover .video-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    animation: pulse-gold 2s infinite;
}

.video-container:hover .play-button {
    transform: scale(1.1);
    background: var(--gold);
}

.play-button i {
    font-size: 2rem;
    color: var(--black);
    margin-left: 5px; /* Visual correction for play icon */
}

.video-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-align: center;
}

.video-overlay p {
    color: var(--gold-light);
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* Benefits Section */
.nomad-benefits {
    padding: 100px 0;
    background: var(--gradient-dark);
    position: relative;
}

.nomad-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.benefits-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 4rem;
}

/* Benefits Carousel */
.benefits-carousel {
    overflow: hidden;
    padding: 2rem 0;
    position: relative;
}

.benefits-track {
    display: flex;
    gap: 2rem;
    animation: scroll-benefits 30s linear infinite;
}

.benefits-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-benefits {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-320px * 4 - 8rem));
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    text-align: center;
    transition: var(--transition);
    position: relative;
    min-width: 320px;
    flex-shrink: 0;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
    box-shadow: var(--shadow-gold);
}

.benefit-featured {
    border: 2px solid var(--gold);
    background: rgba(212, 175, 55, 0.08);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--black);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--black);
}

.benefit-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.benefit-value {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    border-radius: 20px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Lifestyle Gallery Section */
.nomad-gallery {
    padding: 100px 0;
    background: var(--black);
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-overlay span {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

.item-1 {
    grid-column: span 2;
    grid-row: span 2;
}

.item-2 {
    grid-column: span 1;
    grid-row: span 1;
}

.item-3 {
    grid-column: span 1;
    grid-row: span 1;
}

.item-4 {
    grid-column: span 2;
    grid-row: span 1;
}

/* Responsive adjustments for gallery */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .item-1, .item-4 {
        grid-column: span 2;
        height: 300px;
    }
    
    .item-2, .item-3, .item-5 {
        grid-column: span 1;
        height: 250px;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .item-1, .item-2, .item-3, .item-4, .item-5 {
        grid-column: span 1;
        height: 250px;
    }
}

/* Testimonial */
.nomad-testimonial {
    padding: 120px 0;
    position: relative;
    background-attachment: fixed;
    background-image: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=1920&q=80');
    background-size: cover;
    background-position: center;
}

.nomad-testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(2px);
}

.testimonial-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-quote {
    position: relative;
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(5px);
}

.testimonial-quote i {
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.testimonial-quote p {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--white);
    font-style: italic;
    font-weight: 300;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.author-avatar {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--black);
}

.author-info {
    text-align: left;
}

.author-name {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.author-title {
    color: var(--gray-light);
    font-size: 0.95rem;
}

/* CTA Section */
.nomad-cta {
    padding: 100px 0;
    background: var(--gradient-dark);
    position: relative;
}

.nomad-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem;
    background: rgba(212, 175, 55, 0.05);
    border: 2px solid var(--gold);
    border-radius: 20px;
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.2);
}

.cta-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cta-box p {
    font-size: 1.2rem;
    color: var(--gray-light);
    margin-bottom: 2.5rem;
}

.cta-box p strong {
    color: var(--gold);
    font-size: 1.4rem;
}

.btn-xl {
    padding: 20px 50px;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-xl:hover i {
    transform: translateX(5px);
}

.btn-xl i {
    transition: var(--transition);
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--gray-light);
    font-size: 0.9rem;
}

.cta-guarantee i {
    color: var(--gold);
    font-size: 1.1rem;
}

/* Calendar Section */
.calendar-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.calendar-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.calendar-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.calendar-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.calendar-badge {
    display: inline-block;
    padding: 8px 24px;
    background: var(--gradient-gold);
    color: var(--black);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.calendar-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.calendar-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray-light);
    margin-bottom: 2rem;
}

.calendar-benefits {
    list-style: none;
    padding: 0;
}

.calendar-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    color: var(--white);
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.calendar-benefits li:last-child {
    border-bottom: none;
}

.calendar-benefits i {
    color: var(--gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.calendar-box {
    background: rgba(212, 175, 55, 0.05);
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.calendar-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 60px rgba(212, 175, 55, 0.3);
}

.calendar-box i.fa-calendar-alt {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: block;
}

.calendar-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.calendar-box p {
    color: var(--gray-light);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.calendar-box .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.calendar-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--gray-light);
    font-size: 0.9rem;
}

.calendar-note i {
    color: var(--gold);
}

@media (max-width: 968px) {
    .calendar-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .calendar-text h2 {
        font-size: 2.2rem;
    }
}


/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--warm-white);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    pointer-events: none;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-intro {
    margin-bottom: 2rem;
}

.contact-intro h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.contact-intro p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    background: var(--gradient-elegant);
    border-radius: 10px;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(244, 228, 177, 0.1) 100%);
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-gold);
}

.contact-icon i {
    color: var(--black);
    font-size: 1.3rem;
}

.contact-details h4 {
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--text-primary);
    font-size: 1.05rem;
}

.contact-details p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-form {
    background: var(--cream);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.75rem;
}

.form-highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-left: 4px solid var(--gold);
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.form-highlight i {
    color: var(--gold);
    font-size: 1.5rem;
}

.form-highlight p {
    margin: 0;
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.form-highlight strong {
    color: var(--gold);
}

.form-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-note i {
    color: var(--gold);
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background: var(--white);
    color: var(--text-primary);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* WhatsApp Floating Button - Mejorado */
.whatsapp-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    position: relative;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: pulse-ring 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 1.8rem;
    color: white;
    position: relative;
    z-index: 1;
}

/* WhatsApp Tooltip */
.whatsapp-tooltip {
    background: white;
    color: var(--text-primary);
    padding: 12px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    font-weight: 500;
    font-size: 0.95rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    animation: tooltipBounce 3s ease-in-out 2s infinite;
    pointer-events: none;
}

@keyframes tooltipBounce {
    0%, 100% {
        opacity: 0;
        transform: translateX(10px);
    }
    10%, 90% {
        opacity: 1;
        transform: translateX(0);
    }
}

.whatsapp-container:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
    animation: none;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.9);
        opacity: 1;
    }
    80%, 100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.25rem;
    color: var(--gold);
    font-size: 1.5rem;
}

.footer-section h4 {
    margin-bottom: 1.25rem;
    color: var(--white);
    font-weight: 600;
    font-size: 1.05rem;
}

.footer-section p {
    color: var(--gray-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--gray-light);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gradient-gold);
    border-color: var(--gold);
    transform: translateY(-3px);
    padding-left: 0;
}

.social-links a:hover i {
    color: var(--black);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--gray-light);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.1;
        transform: scale(1);
    }
    50% {
        opacity: 0.2;
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        height: 70px;
    }

    .menu-link {
        font-size: 2.5rem;
    }

    .menu-footer {
        bottom: 2rem;
    }

    .hero-container {
        text-align: center;
        padding-top: 2rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        max-width: 100%;
        font-size: 1.1rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }


    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .nomad-title {
        font-size: 2.5rem;
    }

    .nomad-hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .nomad-hero-content h3 {
        font-size: 2rem;
    }

    .nomad-hero-visual-element {
        height: 300px;
    }

    .visual-card-1,
    .visual-card-2,
    .visual-card-3 {
        width: 160px;
    }

    .nomad-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefits-title {
        font-size: 2rem;
    }

    .benefits-carousel {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .benefits-track {
        animation: none;
    }
    
    .benefit-card {
        min-width: 280px;
    }

    .testimonial-quote p {
        font-size: 1.2rem;
    }

    .cta-box {
        padding: 2.5rem 2rem;
    }

    .cta-box h3 {
        font-size: 1.8rem;
    }

    .btn-xl {
        padding: 16px 36px;
        font-size: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-logo h2 {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }

    .btn {
        padding: 12px 28px;
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 14px 32px;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .form-title {
        font-size: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-highlight {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-container {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float {
        width: 56px;
        height: 56px;
    }

    .whatsapp-float i {
        font-size: 1.6rem;
    }
    
    .whatsapp-tooltip {
        display: none;
    }

}
