/* ============================================================
   SI TURISMO BARILOCHE — Main Stylesheet
   Color palette:
     Navy:  #1a2a4a
     Gold:  #f0a500
     White: #ffffff
     Light: #f7f8fa
     Text:  #2d3748
============================================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #2d3748;
    background: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3 { line-height: 1.2; }

.section-pretitle {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f0a500;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: #1a2a4a;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.text-center { text-align: center; }

/* ---- LAYOUT ---- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 1.4rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-decoration: none;
    line-height: 1;
}

.btn-sm { padding: 0.45rem 1rem; font-size: 0.82rem; }
.btn-lg { padding: 0.85rem 1.8rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-gold {
    background: #f0a500;
    color: #1a2a4a;
    border-color: #f0a500;
}
.btn-gold:hover {
    background: #d4900a;
    border-color: #d4900a;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(240, 165, 0, 0.35);
}

.btn-whatsapp {
    background: #25d366;
    color: #ffffff;
    border-color: #25d366;
}
.btn-whatsapp:hover {
    background: #1db355;
    border-color: #1db355;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-mp {
    background: #009ee3;
    color: #ffffff;
    border-color: #009ee3;
}
.btn-mp:hover {
    background: #007fc0;
    border-color: #007fc0;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 158, 227, 0.35);
}

.btn-outline-white {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255,255,255,0.8);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-1px);
}

/* ---- HEADER ---- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: rgba(26, 42, 74, 0.97);
    backdrop-filter: blur(8px);
    transition: box-shadow 0.2s;
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    height: 68px;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo {
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-icon {
    height: 62px;   /* ícono redondo */
    flex-shrink: 0;
}

.logo-text {
    height: 42px;   /* wordmark "si turismo" */
    flex-shrink: 0;
}

.main-nav {
    display: flex;
    gap: 1.75rem;
    margin-left: auto;
}

.main-nav a {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.15s;
}
.main-nav a:hover { color: #f0a500; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.2s;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background: #1a2a4a;
    padding: 1rem 1.25rem 1.5rem;
    gap: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav a {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.4rem 0;
}
.mobile-nav.open { display: flex; }

@media (max-width: 768px) {
    .main-nav { display: none; }
    .header-inner .btn-whatsapp { display: none; }
    .hamburger { display: flex; }
}

/* ---- HERO ---- */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.04);
    transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(26, 42, 74, 0.78) 0%,
        rgba(26, 42, 74, 0.55) 50%,
        rgba(10, 20, 40, 0.75) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #ffffff;
    padding: 6rem 1.25rem 3rem;
    max-width: 780px;
    margin: 0 auto;
}

.hero-pretitle {
    font-size: 0.82rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #f0a500;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: rgba(255,255,255,0.88);
    margin-bottom: 2.5rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ---- STATS BAR ---- */
.stats-bar {
    background: #1a2a4a;
    padding: 1.5rem 0;
}

.stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}

.stat-item { padding: 0.5rem; }

.stat-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #f0a500;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    display: block;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

@media (max-width: 640px) {
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

/* ---- EXCURSIONES SECTION ---- */
.excursiones-section {
    padding: 5rem 0;
    background: #f7f8fa;
}

/* ---- CATEGORY FILTERS ---- */
.category-filters {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.filter-btn {
    padding: 0.55rem 1.2rem;
    border-radius: 50px;
    border: 2px solid #e2e8f0;
    background: #ffffff;
    color: #4a5568;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}
.filter-btn:hover {
    border-color: #1a2a4a;
    color: #1a2a4a;
}
.filter-btn.active {
    background: #1a2a4a;
    border-color: #1a2a4a;
    color: #f0a500;
}

/* ---- EXCURSION CARDS GRID ---- */
.excursiones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.excursiones-grid-sm {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .excursiones-grid,
    .excursiones-grid-sm { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .excursiones-grid,
    .excursiones-grid-sm { grid-template-columns: 1fr; }
}

/* ---- EXCURSION CARD ---- */
.excursion-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
}
.excursion-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.excursion-card.hidden { display: none; }

.card-image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.excursion-card:hover .card-image { transform: scale(1.05); }

.card-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.badge-terrestrales { background: #1a2a4a; color: #f0a500; }
.badge-lacustres    { background: #0077b6; color: #ffffff; }
.badge-aventura     { background: #e63946; color: #ffffff; }
.badge-nieve        { background: #4a90d9; color: #ffffff; }
.badge-promociones  { background: #f0a500; color: #1a2a4a; }

.card-duracion {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    background: rgba(0,0,0,0.65);
    color: #ffffff;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
    backdrop-filter: blur(4px);
}

.card-oferta {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: #e8000d;
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 0.28rem 0.65rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(232,0,13,0.45);
    text-transform: uppercase;
    line-height: 1.3;
    animation: pulsaOferta 2.2s ease-in-out infinite;
}

@keyframes pulsaOferta {
    0%, 100% { transform: scale(1);    box-shadow: 0 2px 8px rgba(232,0,13,0.45); }
    50%       { transform: scale(1.07); box-shadow: 0 4px 16px rgba(232,0,13,0.65); }
}

.card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a2a4a;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.card-desc {
    font-size: 0.855rem;
    color: #64748b;
    line-height: 1.5;
    flex: 1;
    margin-bottom: 1rem;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.card-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a2a4a;
}
.card-price small {
    font-size: 0.7rem;
    font-weight: 400;
    color: #94a3b8;
    display: block;
    line-height: 1;
}

.btn-reservar { font-size: 0.82rem; padding: 0.5rem 1rem; }

/* ---- NOSOTROS ---- */
.nosotros-section {
    padding: 5rem 0;
    background: #ffffff;
}

.nosotros-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.nosotros-text p {
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.nosotros-lista {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.nosotros-lista li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #2d3748;
    font-size: 0.92rem;
}

.nosotros-lista li svg { color: #25d366; flex-shrink: 0; }

.nosotros-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    aspect-ratio: 4/3;
}
.nosotros-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .nosotros-inner { grid-template-columns: 1fr; gap: 2rem; }
    .nosotros-img { order: -1; }
}

/* ---- TESTIMONIOS ---- */
.testimonios-section {
    padding: 5rem 0;
    background: #f7f8fa;
}

.testimonios-section .section-title {
    margin-bottom: 2.5rem;
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .testimonios-grid { grid-template-columns: 1fr; }
}

.testimonio-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border-left: 4px solid #f0a500;
}

.testimonio-card .stars {
    color: #f0a500;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.testimonio-card p {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonio-card strong {
    font-size: 0.82rem;
    color: #1a2a4a;
}

/* ---- CONTACTO ---- */
.contacto-section {
    padding: 5rem 0;
    background: #1a2a4a;
    color: #ffffff;
}

.contacto-section .section-title { color: #ffffff; }

.contacto-inner {
    max-width: 100%;
}

.contacto-info p {
    color: rgba(255,255,255,0.75);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contacto-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contacto-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255,255,255,0.85);
    font-size: 0.92rem;
}
.contacto-item svg { color: #f0a500; flex-shrink: 0; margin-top: 2px; }

/* ---- FOOTER ---- */
.site-footer {
    background: #0f1c33;
    color: rgba(255,255,255,0.7);
    padding: 3.5rem 0 0;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

@media (max-width: 768px) {
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.footer-logo {
    width: auto;
    object-fit: contain;
    display: block;
}

/* El ícono redondo tiene fondo blanco/color — se ve bien sin filtro */
.footer-logo-icon {
    height: 54px;
}

/* El wordmark de texto — lo aclaramos levemente para el fondo oscuro */
.footer-logo-text {
    height: 36px;
    filter: brightness(0) invert(1);   /* convierte el texto rojo/oscuro a blanco */
    opacity: 0.9;
}

.footer-col p {
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col ul li a,
.footer-col ul li {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.65);
    transition: color 0.15s;
    line-height: 1.5;
}
.footer-col ul li a:hover { color: #f0a500; }

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    color: rgba(255,255,255,0.6);
    transition: color 0.15s;
}
.footer-social a:hover { color: #f0a500; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
}
.footer-bottom p { margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: #f0a500; }
@media (max-width: 640px) {
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ---- WHATSAPP FLOATING BUTTON ---- */
.whatsapp-float {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    z-index: 800;
    width: 58px;
    height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}
.whatsapp-float svg { color: #ffffff; }

.whatsapp-tooltip {
    position: absolute;
    right: 68px;
    background: #1a2a4a;
    color: #ffffff;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}
.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #1a2a4a;
    border-right: none;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ---- MODAL / DRAWER ---- */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(10, 20, 40, 0.6);
    backdrop-filter: blur(3px);
    align-items: flex-end;
    justify-content: center;
}

.modal-overlay.open {
    display: flex;
}

@media (min-width: 640px) {
    .modal-overlay {
        align-items: center;
    }
    .modal-drawer {
        max-width: 620px !important;
        border-radius: 16px !important;
        max-height: 90vh !important;
    }
}

.modal-drawer {
    position: relative;
    background: #ffffff;
    width: 100%;
    max-width: 100%;
    max-height: 92vh;
    overflow-y: auto;
    border-radius: 20px 20px 0 0;
    animation: slideUp 0.3s ease;
    overscroll-behavior: contain;
}

@keyframes slideUp {
    from { transform: translateY(60px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}

.modal-close {
    position: sticky;
    top: 0.75rem;
    float: right;
    margin: 0.75rem 0.75rem 0 0;
    background: #f1f5f9;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #64748b;
    transition: background 0.15s, color 0.15s;
    z-index: 10;
    flex-shrink: 0;
}
.modal-close:hover { background: #e2e8f0; color: #1a2a4a; }

.modal-inner { padding: 0 1.5rem 1.5rem; }

.modal-header {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.modal-img {
    width: 90px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.modal-header-text { flex: 1; }

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #1a2a4a;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.modal-precio {
    font-size: 1.1rem;
    font-weight: 700;
    color: #f0a500;
}

.modal-descripcion {
    font-size: 0.875rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.modal-incluye {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}

.modal-incluye-tag {
    background: #f0f4ff;
    color: #1a2a4a;
    font-size: 0.72rem;
    padding: 0.2rem 0.55rem;
    border-radius: 20px;
    font-weight: 500;
}

.modal-duracion {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 1.25rem;
}
.modal-duracion svg { color: #f0a500; }

/* ---- FORMS ---- */
.reserva-form { display: flex; flex-direction: column; gap: 0.75rem; }

.form-row { display: flex; flex-direction: column; gap: 0.75rem; }
.form-row-2 { flex-direction: row; gap: 0.75rem; }
.form-row-2 .form-group { flex: 1; }

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.form-group input {
    padding: 0.65rem 0.9rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 7px;
    font-size: 0.9rem;
    font-family: inherit;
    color: #2d3748;
    background: #fafafa;
    transition: border-color 0.15s, box-shadow 0.15s;
    width: 100%;
}
.form-group input:focus {
    outline: none;
    border-color: #1a2a4a;
    box-shadow: 0 0 0 3px rgba(26, 42, 74, 0.1);
    background: #ffffff;
}

/* Counter input */
.counter-input {
    display: flex;
    align-items: center;
    border: 1.5px solid #e2e8f0;
    border-radius: 7px;
    overflow: hidden;
    background: #fafafa;
}

.counter-btn {
    width: 36px;
    height: 38px;
    border: none;
    background: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #1a2a4a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    flex-shrink: 0;
}
.counter-btn:hover { background: #f0f4ff; }

.counter-input input {
    flex: 1;
    border: none;
    background: none;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0;
    width: 40px;
    min-width: 40px;
}
.counter-input input:focus { box-shadow: none; border: none; }

/* Modal action buttons */
.modal-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

@media (max-width: 420px) {
    .modal-actions { grid-template-columns: 1fr; }
    .form-row-2 { flex-direction: column; }
}

/* ---- MODAL 5-STEP ---- */
.modal-hd {
    background: #1a2a4a;
    color: #fff;
    padding: 1.1rem 1.4rem 0.9rem;
    border-radius: 16px 16px 0 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}
.modal-tour-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; }
.modal-tour-meta { font-size: 0.75rem; opacity: 0.65; margin-top: 2px; }
.modal-hd .modal-close {
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 7px;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
}
.modal-hd .modal-close:hover { background: rgba(255,255,255,0.3); }

/* Steps indicator */
.modal-steps {
    display: flex;
    padding: 1rem 1.25rem 0;
    gap: 0;
    border-bottom: 1px solid #e2e8f0;
    overflow-x: auto;
}
.modal-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding-bottom: 0.75rem;
}
.modal-step::after {
    content: '';
    position: absolute;
    top: 13px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #e2e8f0;
    z-index: 0;
}
.modal-step:last-child::after { display: none; }
.ms-dot {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #6b7c8d;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 4px;
    position: relative;
    z-index: 1;
    transition: background 0.2s, color 0.2s;
}
.ms-label { font-size: 10px; color: #6b7c8d; font-weight: 500; }
.modal-step.active .ms-dot { background: #1a2a4a; color: #fff; }
.modal-step.active .ms-label { color: #1a2a4a; font-weight: 600; }
.modal-step.done .ms-dot { background: #f0a500; color: #fff; }
.modal-step.done .ms-label { color: #f0a500; }

/* Step panels */
.step-panel { display: none; padding: 1.25rem; }
.step-panel.active { display: block; }
.step-subtitle { font-size: 0.85rem; font-weight: 600; margin-bottom: 1rem; color: #1a2a4a; }

/* Calendar */
.cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.9rem; }
.cal-title { font-size: 0.95rem; font-weight: 600; color: #1a2a4a; }
.cal-nav {
    background: #f0f4f8;
    border: none;
    border-radius: 7px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    color: #1a2a4a;
}
.cal-nav:hover { background: #e2e8f0; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; margin-bottom: 0.75rem; }
.cal-dow { text-align: center; font-size: 10px; font-weight: 600; color: #6b7c8d; padding: 3px 0; text-transform: uppercase; }
.cal-day {
    text-align: center;
    padding: 7px 2px;
    border-radius: 7px;
    font-size: 12px;
    cursor: pointer;
    position: relative;
    transition: background 0.12s;
}
.cal-day:hover:not(.empty):not(.past) { background: #f0f4f8; }
.cal-day.past { color: #cbd5e1; cursor: default; }
.cal-day.today { font-weight: 700; color: #1a2a4a; }
.cal-day.selected { background: #f0a500 !important; color: #fff !important; font-weight: 700; }
.cal-day.avail::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #22c55e;
}
.cal-legend { display: flex; gap: 1rem; font-size: 11px; color: #6b7c8d; align-items: center; flex-wrap: wrap; margin-bottom: 0.75rem; }
.cal-legend span { display: flex; align-items: center; gap: 4px; }
.cal-dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }

/* Pax grid */
.pax-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1rem; }
.pax-item { background: #f8fafc; border-radius: 8px; padding: 0.75rem 1rem; }
.pax-lbl { font-size: 0.82rem; font-weight: 600; color: #1a2a4a; }
.pax-sub { font-size: 0.72rem; color: #6b7c8d; margin-bottom: 0.5rem; }
.pax-ctrl { display: flex; align-items: center; gap: 0.6rem; margin-top: 0.5rem; }
.pax-btn {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    border: 1.5px solid #e2e8f0;
    background: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, border-color 0.15s;
    color: #1a2a4a;
}
.pax-btn:hover { background: #f0f4f8; border-color: #f0a500; }
.pax-val { font-size: 0.95rem; font-weight: 700; min-width: 18px; text-align: center; color: #1a2a4a; }

.price-estimate {
    background: #1a2a4a;
    color: #fff;
    border-radius: 8px;
    padding: 0.9rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.pe-label { font-size: 0.8rem; font-weight: 600; }
.pe-note { font-size: 0.68rem; opacity: 0.55; display: block; margin-top: 2px; }
.pe-amount { font-size: 1.25rem; font-weight: 700; color: #f0a500; }

/* Payment section */
.pay-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2px;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 0.9rem;
}
#pay-total-amt { font-size: 1.25rem; font-weight: 700; color: #1a2a4a; }
.pay-title { font-size: 0.85rem; font-weight: 600; margin-bottom: 0.75rem; color: #1a2a4a; }
.pay-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.pay-tab {
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.5rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    background: #fff;
    color: #1a2a4a;
    transition: border-color 0.2s, background 0.2s;
}
.pay-tab:hover { border-color: #f0a500; }
.pay-tab.active { border-color: #f0a500; background: #fffbf0; font-weight: 600; color: #1a2a4a; }
.pay-panel { display: none; }
.pay-panel.active { display: block; }
.pay-note { font-size: 0.78rem; color: #6b7c8d; margin-bottom: 0.75rem; }
.pay-chips { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 0.6rem; }
.pay-chips span { background: #f0f4f8; border: 1px solid #e2e8f0; border-radius: 5px; padding: 3px 8px; font-size: 10px; color: #6b7c8d; }

/* MP Checkout Pro panel */
.mp-checkout-info { background: #f0f9ff; border: 1px solid #bae6fd; border-radius: 10px; padding: 1rem 1.1rem; margin-bottom: 1rem; }
.mp-logo-row { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.mp-secure-badge { font-size: .78rem; font-weight: 600; color: #15803d; background: #dcfce7; padding: .2rem .6rem; border-radius: 20px; }
.mp-features { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .75rem; }
.mp-features span { font-size: .75rem; color: #0369a1; background: #e0f2fe; padding: .2rem .55rem; border-radius: 4px; font-weight: 500; }
.transfer-data {
    background: #f8fafc;
    border-radius: 8px;
    padding: 0.9rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.82rem;
    line-height: 1.8;
    border: 1px solid #e2e8f0;
}
.td-row { color: #2d3748; }

/* Payment summary card */
.pay-summary-card {
    display: flex;
    gap: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}
.ps-img { width: 70px; height: 52px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.ps-name { font-size: 0.82rem; font-weight: 600; color: #1a2a4a; }
.ps-meta { font-size: 0.75rem; color: #6b7c8d; margin-top: 2px; }
.ps-price { font-size: 0.95rem; font-weight: 700; color: #1a2a4a; margin-top: 4px; }

/* Processing spinner */
.processing { text-align: center; padding: 2rem 0; }
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #e2e8f0;
    border-top-color: #f0a500;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 0.9rem;
}
@keyframes spin { to { transform: rotate(360deg); } }
.processing p { font-size: 0.9rem; font-weight: 600; color: #1a2a4a; }
.processing-sub { font-size: 0.75rem; color: #6b7c8d; margin-top: 4px; }

/* Modal notice */
.modal-notice {
    background: #f0f4f8;
    border-left: 3px solid #f0a500;
    border-radius: 0 6px 6px 0;
    padding: 0.6rem 0.9rem;
    font-size: 0.75rem;
    color: #6b7c8d;
    margin-top: 0.75rem;
    line-height: 1.6;
}

/* Modal footer buttons */
.modal-footer {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
    padding: 0.9rem 1.25rem;
    border-top: 1px solid #e2e8f0;
}
.btn-modal-back {
    background: #f0f4f8;
    color: #1a2a4a;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.6rem 1.1rem;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: background 0.15s;
}
.btn-modal-back:hover { background: #e2e8f0; }
.btn-modal-next {
    background: #f0a500;
    color: #1a2a4a;
    border: none;
    border-radius: 8px;
    padding: 0.6rem 1.4rem;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: background 0.15s;
}
.btn-modal-next:hover { background: #d4920a; }

/* Voucher */
.voucher-wrap { border: 2px dashed #f0a500; border-radius: 12px; overflow: hidden; }
.voucher-hd {
    background: #1a2a4a;
    color: #fff;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    flex-wrap: wrap;
}
.voucher-logo { height: 40px; object-fit: contain; background: #fff; padding: 3px 7px; border-radius: 5px; flex-shrink: 0; }
.voucher-check {
    width: 36px;
    height: 36px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.voucher-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; }
.voucher-sub { font-size: 0.75rem; opacity: 0.65; margin-top: 1px; }
.voucher-body { padding: 1rem 1.25rem; background: #fff; }
.v-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem 1.25rem; margin-bottom: 0.9rem; }
@media (max-width: 420px) { .v-grid { grid-template-columns: 1fr; } }
.v-field label { font-size: 10px; font-weight: 600; color: #6b7c8d; text-transform: uppercase; letter-spacing: 0.06em; }
.v-field p { font-size: 0.82rem; font-weight: 600; color: #1a2a4a; margin-top: 1px; }
.v-code { background: #f8fafc; border-radius: 8px; padding: 0.75rem 1rem; text-align: center; border: 1.5px dashed #f0a500; margin-top: 0.5rem; }
.v-code-label { font-size: 10px; color: #6b7c8d; margin-bottom: 3px; }
.v-code-value { font-size: 1.25rem; font-weight: 700; letter-spacing: 0.12em; color: #1a2a4a; }
.voucher-footer {
    background: #f8fafc;
    padding: 0.75rem 1.25rem;
    display: flex;
    gap: 0.6rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}
.v-note { font-size: 0.72rem; color: #6b7c8d; flex: 1; }

/* MP button style */
.btn-mp {
    background: #009ee3;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.7rem 1.4rem;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: background 0.2s;
    text-decoration: none;
}
.btn-mp:hover { background: #007cbf; }

/* ---- EXCURSION DETAIL PAGE ---- */
.excursion-hero {
    position: relative;
    height: 55vh;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.excursion-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.excursion-hero-content {
    position: relative;
    z-index: 1;
    color: #ffffff;
    padding: 5rem 1.25rem 2.5rem;
    width: 100%;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: #f0a500; }

.excursion-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin: 0.6rem 0 0.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.excursion-hero-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
}

.excursion-detail {
    padding: 4rem 1.25rem;
}

.excursion-detail-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 900px) {
    .excursion-detail-grid { grid-template-columns: 1fr; }
    .excursion-booking-widget { order: -1; }
}

.excursion-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1a2a4a;
    margin-bottom: 1rem;
}

.excursion-desc-full {
    color: #4a5568;
    line-height: 1.75;
    margin-bottom: 2rem;
    font-size: 0.97rem;
}

.excursion-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    background: #f7f8fa;
    padding: 1.5rem;
    border-radius: 10px;
}

.meta-item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
}
.meta-item svg { color: #f0a500; flex-shrink: 0; margin-top: 2px; }
.meta-item strong {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.1rem;
}
.meta-item span { font-size: 0.9rem; color: #2d3748; font-weight: 500; }

.excursion-incluye h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a2a4a;
    margin-bottom: 0.75rem;
}

.excursion-incluye ul {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.excursion-incluye ul li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: #374151;
}
.excursion-incluye ul li svg { color: #25d366; flex-shrink: 0; }

/* Booking widget */
.excursion-booking-widget {
    position: sticky;
    top: 88px;
}

.booking-widget-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 1.75rem;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
}

.widget-price {
    margin-bottom: 0.35rem;
}

.widget-precio-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a4a;
}

.widget-por-persona {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-left: 0.25rem;
}

.widget-stars {
    font-size: 0.82rem;
    color: #94a3b8;
    margin-bottom: 1.25rem;
}
.widget-stars span { margin-left: 0.25rem; }

.widget-form { gap: 0.85rem; }

.widget-actions {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 0.25rem;
}

.widget-nota {
    text-align: center;
    font-size: 0.72rem;
    color: #94a3b8;
    margin-top: 0.75rem;
}

/* Related excursions section */
.relacionadas-section {
    padding: 3rem 1.25rem 5rem;
}
.relacionadas-section .section-title {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

/* ---- ANIMATIONS ---- */
@media (prefers-reduced-motion: no-preference) {
    .excursion-card {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.25s;
    }
    .excursion-card.visible {
        opacity: 1;
        transform: translateY(0);
    }
    .excursion-card:hover {
        transform: translateY(-4px);
    }
}

/* ---- UTILITY ---- */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* ================================================================
   HERO VIDEO + SLIDER (reemplaza hero-bg estático)
================================================================ */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    pointer-events: none;
}

/* Slider de slides */
.hero-slider {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 900px;
    padding: 6rem 1.25rem 4rem;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.hero-slide {
    display: none;
    animation: slideIn 0.7s ease;
}
.hero-slide.active { display: block; }

@keyframes slideIn {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Dots del slider */
.hero-dots {
    display: flex;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 2.5rem;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
    padding: 0;
}
.hero-dot.active {
    background: #f0a500;
    transform: scale(1.3);
}

/* ================================================================
   SECCIÓN BIENVENIDA (reemplaza stats-bar)
================================================================ */
.bienvenida-section {
    background: #1a2a4a;
    padding: 3rem 1.25rem 2.5rem;
    text-align: center;
}

.bienvenida-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.bienvenida-titulo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 0.4rem;
    letter-spacing: -0.01em;
}
.bienvenida-titulo span {
    color: #f0a500;
}

.bienvenida-subtitulo {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

.bienvenida-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
}

@media (max-width: 640px) {
    .bienvenida-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ================================================================
   FORMULARIO DE CONTACTO
================================================================ */
.contacto-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 900px) {
    .contacto-inner { grid-template-columns: 1fr; gap: 3rem; }
}

.contacto-form-wrap {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 32px rgba(26,42,74,0.10);
    padding: 2.5rem;
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #1a2a4a;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0a500;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (max-width: 560px) {
    .form-row { grid-template-columns: 1fr; }
    .contacto-form-wrap { padding: 1.5rem; }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #1a2a4a;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    font-family: inherit;
    color: #2d3748;
    background: #f8fafc;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #f0a500;
    box-shadow: 0 0 0 3px rgba(240,165,0,0.15);
    background: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-full { width: 100%; justify-content: center; }

.form-success {
    text-align: center;
    padding: 2.5rem 1rem;
    color: #1a2a4a;
}
.form-success svg {
    color: #22c55e;
    margin: 0 auto 1rem;
}
.form-success h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-alert-error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #dc2626;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
