:root {
    --white-stone: #fdfdfd;
    --jungle-green: #2e4b31;
    --accent-red: #d32f2f;
    --accent-gold: #ffc107;
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--white-stone);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

/* Header */
header {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-align: center;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.6);
}

.hero-content {
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 10px;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: 0.3s;
}

nav.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

nav.scrolled a {
    color: var(--jungle-green);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

/* Sections */
section {
    padding: 100px 10%;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    color: var(--jungle-green);
}

.section-title span {
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--accent-red);
    letter-spacing: 3px;
    margin-bottom: 10px;
}

/* Atractivos Grid */
.atractivos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    margin-bottom: 15px;
    color: var(--jungle-green);
}

/* Experiencias */
.exp-container {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.exp-container:nth-child(even) {
    flex-direction: row-reverse;
}

.exp-img {
    flex: 1;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.exp-img img {
    width: 100%;
    display: block;
}

.exp-text {
    flex: 1;
}

.exp-text h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--jungle-green);
}

/* CTA Button */
.cta-btn {
    display: inline-block;
    padding: 15px 35px;
    background: var(--jungle-green);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    border: 2px solid transparent;
}

.cta-btn:hover {
    background: transparent;
    border-color: var(--jungle-green);
    color: var(--jungle-green);
}

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

@media (max-width: 768px) {
    .hero-content h1 { font-size: 3rem; }
    .nav-links { display: none; }
    .exp-container { flex-direction: column !important; }
}
