@charset "utf-8";
/* CSS Document */
/* =========================
   VARIABLES
========================= */
:root {
    --color-principal: #03578a;
    --color-hover: #1e3a8a;
    --color-gris: #e5e7eb;
    --color-gris-hover: #d1d5db;
    --texto-principal: #333333;
	--titulo-color: #1f2937;
}


/* =========================
   GENERAL
========================= */
body {
    margin: 0;
    font-family: Calibri, Arial, sans-serif;
    color: var(--texto-principal);
    background-color: white;
    scroll-behavior: smooth;
}

/* =========================
   NAVBAR
========================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--color-principal);
    z-index: 1000;
}

.navbar-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 30px;
}

.menu {
    display: flex;
    gap: 30px;
}

.menu a {
    text-decoration: none;
    color: white;
    letter-spacing: 1px;
    position: relative;
}

/* Línea animada */
.menu a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: white;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.menu a:hover::after {
    width: 100%;
}

/* =========================
   HERO (IMAGEN TITULO)
========================= */
.hero {
    height: 350px;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 75px;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    top: 0;
    left: 0;
}

.hero h1 {
    color: white;
    font-size: 42px;
    letter-spacing: 2px;
    z-index: 1;
}

/* =========================
   CONTENIDO
========================= */
.container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.descripcion {
    text-align: center;
    margin-bottom: 50px;
    font-size: 16px;
    letter-spacing: 1px;
}

/* =========================
   CARDS
========================= */
.tours {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background: white;
    transition: 0.3s;
    text-align: center;
}

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

/* TITULOS CARDS */
.card h3 {
    margin-top: 0;
    color: var(--color-principal);
    font-family: Calibri, Arial, sans-serif;
    letter-spacing: 1px;
    font-size: 20px;
}

/* TEXTOS CARDS */
.card p {
    color: var(--texto-principal);
    font-family: Calibri, Arial, sans-serif;
    letter-spacing: 1px;
    font-size: 16px;
}

/* =========================
   BOTONES
========================= */
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 18px;
    background-color: var(--color-gris);
    color: var(--texto-principal);
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
    letter-spacing: 1px;
    font-size: 14px;
}

.btn:hover {
    background-color: var(--color-gris-hover);
}

/* =========================
   TITULO + INTRO
========================= */
.titulo-pagina {
    text-align: center;
    margin-top: 140px;
    margin-bottom: 10px;
    color: #1f2937;
    letter-spacing: 2px;
}
.intro-pagina {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
    font-size: 16px;
    color: #555;
    letter-spacing: 1px;
}

.titulo-pagina {
    color: var(--titulo-color);
}

.tour-text h2 {
    color: var(--titulo-color);
}

/* =========================
   FOOTER
========================= */
footer {
    background-color: var(--color-principal);
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    font-size: 26px;
    margin: 0 10px;
}

/* COLORES ICONOS */
.fa-whatsapp {
    color: #25D366;
}

.fa-instagram {
    background: linear-gradient(45deg,#f9ce34,#ee2a7b,#6228d7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* =========================
   WHATSAPP FLOAT (opcional)
========================= */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: white;
    font-size: 26px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

    .navbar-container {
        flex-direction: column;
    }

    .menu {
        margin-top: 10px;
        gap: 20px;
    }
}

/* =========================
   BOX TECNICO PREMIUM
========================= */
.tour-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    background: #f8fafc;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    border: 1px solid #e5e7eb;
}

.info-item {
    display: flex;
    flex-direction: column;
}

.info-item span {
    font-size: 13px;
    color: #6b7280; /* gris suave */
    letter-spacing: 1px;
}

.info-item strong {
    font-size: 15px;
    color: #1f2937; /* negro grisáceo */
}