/* ===== CORE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* ===== COLORS ===== */
:root {
    --violeta: #000000;      /* ahora es NEGRO */
    --naranja: #FFD700;      /* ahora es AMARILLO */
    --texto-claro: #ffffff;
    --fondo-claro: #f5f5f5;
    --amarillo: #ffd400;
}

/* ===== HEADER ===== */
.header {
    background: var(--violeta);
    padding: 20px 40px;
}

.navbar {
    display: flex;
    align-items: center;
}


.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;   /* tamaño del texto */
    color: var(--texto-claro);
}

.nav-logo img {
    width: 200px;        /* 👈 tamaño del logo */
    height: auto;
}


.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0 auto;   /* 👈 ESTO lo centra */
}

.nav-menu a {
    color: var(--amarillo);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
}


.nav-menu a:hover {
    color: var(--naranja);
}

/* ===== HERO ===== */
.hero-section {
    height: 60vh;
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--texto-claro);
}

.hero-content h1 {
    font-size: 3rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.hero-content p {
    margin-top: 10px;
    font-size: 1.2rem;
}

/* ===== SECCIONES ===== */
.section {
    padding: 60px 40px;
    background: var(--fondo-claro);
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section:nth-child(even) {
    background: #fff;
}

.section h2 {
    font-size: 2rem;
    color: var(--violeta);
    margin-bottom: 30px;
}

/* ===== EXCURSIONES GRID ===== */
.cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== CARD ===== */
.card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ===== IMAGEN ===== */
.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

/* ===== CONTENIDO ===== */
.card-content {
    padding: 15px;
    text-align: center;
}

.card-content h3 {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--violeta);
}

.card-content p {
    font-size: 0.9rem;
    color: #444;
}

/* ===== HOVER ===== */
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* ===== FOOTER ===== */
footer {
    background: var(--violeta);
    color: var(--texto-claro);
    text-align: center;
    padding: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .cards-container {
        grid-template-columns: 1fr;
    }
}
.hero-section {
    position: relative;
    height: 70vh;
    overflow: hidden;
    background: black;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #ffd400;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    text-shadow: 2px 2px 10px black;
}

.hero-content p {
    font-size: 1.2rem;
}
.contacto {
    background: #000;
    color: #ffd400;
}

.contact-box {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    border-radius: 40px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* WhatsApp */
.contact-card.whatsapp {
    background: #25D366;
    color: #000;
}

.contact-card.whatsapp:hover {
    background: #1ebe5d;
    transform: scale(1.05);
}

/* Instagram */
.contact-card.instagram {
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf);
    color: #fff;
}

.contact-card.instagram:hover {
    transform: scale(1.05);
}

.contact-card i {
    font-size: 1.6rem;
}
@media (max-width: 600px) {
    .contact-card {
        width: 100%;
        justify-content: center;
        font-size: 1.2rem;
    }
}

