/* ============================================================
   FUENTES Y ESTILOS BASE (Heredados de tu código principal)
============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Michroma&display=swap');

html { scroll-behavior: smooth; }
body { margin: 0; padding-top: 130px; overflow-x: hidden; background: white; font-family: 'Caudex', serif; }

/* ============================================================
   MENÚ SUPERIOR 100% FIJO (igual al resto del sitio) — ACTIVO
============================================================ */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: #ffcc9d;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    box-sizing: border-box;
    font-family: "Michroma", sans-serif;
    color: #666666;
    font-size: 20px;
    z-index: 10000;
}
.main-header {
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    height: 80px;
    background: #fffaf3;
    display: flex;
    justify-content: right;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
    padding: 0 40px;
    box-sizing: border-box;
}
.menu { display: flex; align-items: center; gap: 45px; }
.menu-toggle { display: none; }
.menu a {
    color: #666666;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    font-family: "Arial Narrow", sans-serif;
    transition: color 0.6s ease, transform 0.6s ease;
}
.menu a:hover, .menu a.active { color: #b6582c; transform: translateY(-2px); }


.main-header {
    justify-content: space-between; /* en vez de "right" */
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-header {
    height: 55px;      /* ajusta este valor a tu gusto */
    width: auto;
    max-width: none;
}

/* ============================================================
   FONDO NARANJA COMPLETO CON LOGO CENTRADO — ACTIVO
   (ocupa toda la pantalla debajo del menú fijo)
============================================================ */
.fondo-naranja {
    background-color: #001689; /* mismo naranja de acento del sitio */
    width: 100%;
    min-height: calc(100vh - 130px); /* resta el alto del topbar + menú fijo */
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 40px;
}

.fondo-naranja img {
    width: 45%;          /* tamaño mediano, con espacio alrededor */
    max-width: 500px;
    height: auto;
}

/* ============================================================
   BOTÓN FLOTANTE DE WHATSAPP — ACTIVO
============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    max-width: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: 0.3s;
    overflow: hidden;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float img {
    width: 40px !important;
    height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    display: block;
    object-fit: contain;
}

/* ============================================================
   RESPONSIVO MÓVILES — ACTIVO
============================================================ */
@media (max-width: 768px) {
    body { padding-top: 110px; }
    .topbar { display: none; }

    .main-header { top: 0; height: 70px; padding: 0 20px; justify-content: space-between; box-sizing: border-box; }

    .menu-toggle { display: block !important; background: none; border: none; font-size: 28px; color: #666666; cursor: pointer; }

    .menu { display: none; position: absolute; top: 70px; left: 0; width: 100%; background: #fffaf3; flex-direction: column; gap: 0; box-shadow: 0 8px 15px rgba(0,0,0,0.1); padding: 15px 0; }
    .menu.active { display: flex; }
    .menu a { width: 100%; padding: 12px 0; text-align: center; border-bottom: 1px solid rgba(0,0,0,0.05); box-sizing: border-box; font-size: 18px; }
    .menu a:last-child { border-bottom: none; }

    .fondo-naranja { min-height: calc(100vh - 110px); }
    .fondo-naranja img { width: 65%; }
}

/* ============================================================
   ESTILOS ANTERIORES DESACTIVADOS TEMPORALMENTE
   (hero de las alitas y sección "Sobre Pilgrims")
============================================================ */
/*
.pilgrims-hero {
    position: relative;
    width: 100%;
    height: 55vh;
    min-height: 380px;
    overflow: hidden;
}

.pilgrims-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.6);
}

.pilgrims-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    box-sizing: border-box;
}

.pilgrims-hero-overlay h1 {
    font-family: 'Michroma', sans-serif;
    font-size: 55px;
    font-weight: 400;
    margin: 0 0 15px 0;
    text-shadow: 0 3px 10px rgba(0,0,0,0.4);
}

.pilgrims-hero-overlay p {
    font-family: 'Arial', sans-serif;
    font-size: 20px;
    margin: 0;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.pilgrims-section {
    padding: 80px 50px;
    background-color: #f4f1ea;
}

.pilgrims-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.pilgrims-container h2 {
    font-family: 'Michroma', sans-serif;
    font-size: 32px;
    color: #bc4f3b;
    margin-bottom: 25px;
    font-weight: 400;
}

.pilgrims-text {
    font-family: 'Arial', sans-serif;
    font-size: 17px;
    color: #666666;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .pilgrims-hero { height: 40vh; min-height: 260px; }
    .pilgrims-hero-overlay h1 { font-size: 34px; }
    .pilgrims-hero-overlay p { font-size: 16px; }
    .pilgrims-section { padding: 40px 20px; }
}
*/