/* =========================================
   1. VARIABLES Y RESET (BLINDAJE DE IMÁGENES)
   ========================================= */
:root {
    --primary: #E65100;
    --primary-dark: #BF360C;
    --dark: #212121;
    --gray: #F5F7FA;
    --text: #455A64;
    --whatsapp: #25D366;

    --bg: #fffaf2;
    --surface: #ffffff;
    --surface-2: #fff7ed;
    --surface-3: #f8fafc;
    --ink: #0f172a;
    --muted: #475569;
    --border-soft: rgba(15, 23, 42, 0.08);
    --shadow-soft: 0 18px 55px rgba(2, 6, 23, 0.08);
    --shadow-lift: 0 28px 80px rgba(2, 6, 23, 0.14);
    --radius-lg: 24px;
    --radius-md: 18px;

    /* Responsive breakpoints */
    --mobile: 480px;
    --tablet: 768px;
    --desktop: 1024px;
    --large: 1200px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Quicksand', sans-serif;
    color: var(--text);
    background: radial-gradient(circle at 15% 0%, rgba(22, 163, 74, 0.10), transparent 42%),
        radial-gradient(circle at 90% 20%, rgba(34, 197, 94, 0.10), transparent 40%),
        linear-gradient(180deg, var(--bg), #ffffff 42%, var(--surface-3));
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
}

@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
        animation: none !important;
        transition: none !important;
    }
}

/* --- REGLA DE ORO: ESTO ARREGLA LAS FOTOS GIGANTES --- */
img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

img:hover {
    transform: scale(1.02);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

a {
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

ul {
    list-style: none;
}

/* =========================================
   2. HERO SECTION (PORTADA) - RESPONSIVE
   ========================================= */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    background: #0b1220;
}

@media (max-width: 768px) {
    .hero-section {
        height: 90vh;
        min-height: 500px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 85vh;
        min-height: 450px;
    }
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity;
    animation: heroZoom 20s infinite alternate;
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero-slide.active {
    opacity: 1;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}

@media (max-width: 480px) {
    .hero-dots {
        bottom: 20px;
        gap: 8px;
    }
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 480px) {
    .hero-dot {
        width: 8px;
        height: 8px;
    }
}

.hero-dot:hover {
    transform: scale(1.2);
    background: rgba(255, 255, 255, 0.4);
}

.hero-dot.active {
    width: 32px;
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.95);
    transform: scale(1.1);
}

@media (max-width: 480px) {
    .hero-dot.active {
        width: 24px;
    }
}

/* Fondo Dinámico */
.hero-bg-dynamic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    opacity: 0.7;
    transition: transform 3s ease;
    animation: zoomHero 25s infinite alternate;
}

@keyframes zoomHero {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.15);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 25%, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.62) 72%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 980px;
    padding: 28px 20px 102px;
    animation: fadeInUp 1s ease;
}

@media (max-width: 768px) {
    .hero-content {
        padding: 20px 15px 80px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 15px 10px 60px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    display: block;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: slideInLeft 0.8s ease;
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 0.8rem;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 0.7rem;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: slideInRight 0.8s ease 0.2s both;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 12px;
        line-height: 1.2;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.text-orange {
    color: var(--primary);
    position: relative;
}

.text-orange::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    animation: slideIn 0.8s ease 0.4s both;
}

@keyframes slideIn {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.hero-content p {
    font-size: 1.22rem;
    font-weight: 600;
    margin-bottom: 18px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1s ease 0.6s both;
}

@media (max-width: 768px) {
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 12px;
        line-height: 1.5;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 16px;
    animation: fadeIn 1s ease 0.8s both;
}

@media (max-width: 480px) {
    .hero-buttons {
        gap: 10px;
        margin-top: 12px;
    }
}

/* Hero search (tabs + caja) - RESPONSIVE */
.hero-search {
    margin-top: 22px;
    width: min(980px, 96vw);
    margin-left: auto;
    margin-right: auto;
    animation: slideInUp 0.8s ease 1s both;
}

@media (max-width: 768px) {
    .hero-search {
        width: min(600px, 90vw);
        margin-top: 18px;
    }
}

@media (max-width: 480px) {
    .hero-search {
        width: 95vw;
        margin-top: 15px;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-search-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

@media (max-width: 480px) {
    .hero-search-tabs {
        gap: 6px;
        margin-bottom: 8px;
    }
}

.hst-tab {
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hst-tab {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hst-tab {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
}

.hst-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.hst-tab:hover::before {
    left: 100%;
}

.hst-tab:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hst-tab.active {
    background: var(--primary);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
    transform: translateY(-2px);
}

.hst-tab:hover {
    transform: translateY(-1px);
}

/* Hero search box - RESPONSIVE */
.hero-search-box {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr auto;
    gap: 12px;
    background: #fff;
    padding: 14px;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

@media (max-width: 880px) {
    .hero-search-box {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 600px) {
    .hero-search-box {
        padding: 12px;
        border-radius: 16px;
        gap: 8px;
    }
}

.hero-search-box:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lift);
}

.hs-field {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
}

.hs-field label {
    font-size: 0.78rem;
    font-weight: 900;
    color: rgba(15, 23, 42, 0.65);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hs-field input,
.hs-field select {
    width: 100%;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    background: #f8fafc;
    font-family: inherit;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hs-field input:focus,
.hs-field select:focus {
    outline: none;
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(230, 81, 0, 0.12);
    transform: translateY(-1px);
}

.hs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    font-weight: 900;
    background: var(--primary);
    color: #fff;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.20);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hs-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.hs-btn:hover::before {
    left: 100%;
}

.hs-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.28);
}

@media (max-width: 880px) {
    .hs-btn {
        width: 100%;
        padding: 16px 20px;
    }
}

/* Live suggestions */
.live-suggest {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    z-index: 50;
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.live-suggest-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    color: var(--dark);
    font-weight: 800;
    background: transparent;
    transition: all 0.3s ease;
}

@media (max-width: 600px) {
    .live-suggest-item {
        padding: 11px 12px;
    }
}

.live-suggest-item:hover {
    background: rgba(22, 163, 74, 0.10);
    transform: translateX(4px);
}

.lsi-left {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.lsi-thumb {
    width: 34px;
    height: 26px;
    border-radius: 10px;
    object-fit: cover;
    flex: 0 0 auto;
    border: 1px solid var(--border-soft);
    box-shadow: 0 10px 20px rgba(2, 6, 23, 0.10);
    background: rgba(15, 23, 42, 0.04);
    transition: transform 0.3s ease;
}

.live-suggest-item:hover .lsi-thumb {
    transform: scale(1.1);
}

.lsi-name {
    display: inline-block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lsi-name {
    color: var(--dark);
}

.lsi-price {
    color: #0f172a;
    opacity: 0.72;
    font-weight: 900;
    white-space: nowrap;
}

/* Botones generales */
.btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 480px) {
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 20px rgba(230, 81, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: var(--primary-dark);
    box-shadow: 0 16px 36px rgba(230, 81, 0, 0.28);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* =========================================
   3. BARRA DE CONFIANZA - RESPONSIVE
   ========================================= */
.trust-bar {
    background: rgba(255, 255, 255, 0.92);
    padding: 38px;
    box-shadow: var(--shadow-soft);
    position: relative;
    z-index: 10;
    margin-top: -60px;
    width: 90%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
    border: 1px solid var(--border-soft);
    backdrop-filter: blur(10px);
    animation: slideInUp 0.8s ease 0.3s both;
}

@media (max-width: 768px) {
    .trust-bar {
        width: 95%;
        padding: 25px 20px;
        margin-top: -40px;
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .trust-bar {
        width: 98%;
        padding: 20px 15px;
        margin-top: -30px;
        border-radius: 12px;
    }
}

.trust-bar .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

@media (max-width: 768px) {
    .trust-bar .container {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .trust-bar .container {
        gap: 15px;
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .trust-item {
        gap: 10px;
        flex-direction: column;
        text-align: center;
    }
}

.trust-item i {
    font-size: 2.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.trust-item:hover i {
    transform: scale(1.1);
    color: var(--primary-dark);
}

@media (max-width: 480px) {
    .trust-item i {
        font-size: 2rem;
    }
}

.trust-item strong {
    color: var(--dark);
    font-size: 1.1rem;
    display: block;
}

.trust-item span {
    font-size: 0.9rem;
    color: #888;
}

/* =========================================
   HOME - NUEVAS SECCIONES - MOBILE FIRST
   ========================================= */
.home-bento {
    padding: 50px 0 20px;
    background: linear-gradient(180deg, #fff, #fff7ed);
}

@media (max-width: 768px) {
    .home-bento {
        padding: 35px 0 15px;
    }
}

@media (max-width: 480px) {
    .home-bento {
        padding: 25px 0 10px;
    }
}

.warm-split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 22px;
    align-items: stretch;
}

@media (max-width: 768px) {
    .warm-split {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

@media (max-width: 480px) {
    .warm-split {
        gap: 15px;
    }
}

.warm-copy {
    background: radial-gradient(circle at 20% 10%, rgba(22, 163, 74, 0.12), transparent 46%), linear-gradient(180deg, rgba(240, 253, 244, 0.95), #fff);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    padding: 30px;
}

@media (max-width: 768px) {
    .warm-copy {
        padding: 25px 20px;
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .warm-copy {
        padding: 20px 15px;
        border-radius: 12px;
    }
}

.warm-copy h2 {
    color: var(--dark);
    font-size: 2.5rem;
    margin: 10px 0;
    line-height: 1.1;
}

@media (max-width: 768px) {
    .warm-copy h2 {
        font-size: 2rem;
        margin: 8px 0;
    }
}

@media (max-width: 480px) {
    .warm-copy h2 {
        font-size: 1.6rem;
        margin: 6px 0;
        line-height: 1.2;
    }
}

.warm-copy p {
    color: #475569;
    font-weight: 600;
    line-height: 1.7;
    margin: 0 0 18px;
}

@media (max-width: 480px) {
    .warm-copy p {
        font-size: 0.95rem;
        margin: 0 0 15px;
        line-height: 1.6;
    }
}

.warm-media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    position: relative;
}

@media (max-width: 480px) {
    .warm-media {
        border-radius: 12px;
        min-height: 250px;
    }
}

.warm-media img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .warm-media img {
        min-height: 280px;
    }
}

@media (max-width: 480px) {
    .warm-media img {
        min-height: 250px;
    }
}

.comfort-section {
    padding: 70px 0 30px;
    background: #fff;
}

@media (max-width: 768px) {
    .comfort-section {
        padding: 50px 0 25px;
    }
}

@media (max-width: 480px) {
    .comfort-section {
        padding: 35px 0 20px;
    }
}

.comfort-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: center;
}

@media (max-width: 768px) {
    .comfort-split {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

@media (max-width: 480px) {
    .comfort-split {
        gap: 15px;
    }
}

.comfort-copy h2 {
    font-size: 2.4rem;
    margin: 10px 0 6px;
}

@media (max-width: 768px) {
    .comfort-copy h2 {
        font-size: 2rem;
        margin: 8px 0 5px;
    }
}

@media (max-width: 480px) {
    .comfort-copy h2 {
        font-size: 1.6rem;
        margin: 6px 0 4px;
        line-height: 1.2;
    }
}

.comfort-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

@media (max-width: 480px) {
    .comfort-pills {
        gap: 8px;
        margin-top: 15px;
    }
}

.comfort-pill {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
    font-weight: 800;
    padding: 10px 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 480px) {
    .comfort-pill {
        padding: 8px 10px;
        font-size: 0.85rem;
        gap: 6px;
    }
}

.comfort-pill i {
    color: var(--primary);
}

.comfort-actions {
    margin-top: 18px;
}

@media (max-width: 480px) {
    .comfort-actions {
        margin-top: 15px;
    }
}

.comfort-carousel {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    min-height: 360px;
}

@media (max-width: 768px) {
    .comfort-carousel {
        min-height: 300px;
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .comfort-carousel {
        min-height: 250px;
        border-radius: 12px;
    }
}

.comfort-carousel::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.0) 45%, rgba(0, 0, 0, 0.20));
}

.comfort-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.comfort-img.active {
    opacity: 1;
}

.comfort-dots {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: flex;
    gap: 8px;
    justify-content: center;
    z-index: 3;
}

@media (max-width: 480px) {
    .comfort-dots {
        left: 10px;
        right: 10px;
        bottom: 10px;
        gap: 6px;
    }
}

.comfort-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
}

@media (max-width: 480px) {
    .comfort-dot {
        width: 8px;
        height: 8px;
    }
}

.comfort-dot.active {
    background: #fff;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 14px;
}

@media (max-width: 768px) {
    .bento-grid {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .bento-grid {
        gap: 10px;
    }
}

.bento-card {
    grid-column: span 4;
    background: rgba(255, 255, 255, 0.94);
    border-radius: var(--radius-md);
    padding: 22px;
    border: 1px solid var(--border-soft);
    box-shadow: 0 15px 35px rgba(2, 6, 23, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bento-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 55px rgba(2, 6, 23, 0.10);
}

@media (max-width: 991px) {
    .bento-card {
        grid-column: span 12;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .bento-card {
        padding: 18px 15px;
        border-radius: 12px;
    }
}

.bento-main {
    grid-column: span 12;
    padding: 30px;
    background: radial-gradient(circle at 20% 10%, rgba(22, 163, 74, 0.10), transparent 45%), #fff;
}

@media (max-width: 768px) {
    .bento-main {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .bento-main {
        padding: 20px 15px;
    }
}

.bento-main h2 {
    color: var(--dark);
    font-size: 2.6rem;
    margin: 10px 0;
    line-height: 1.1;
}

@media (max-width: 768px) {
    .bento-main h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .bento-main h2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
}

.bento-main p {
    color: #475569;
    font-weight: 600;
    line-height: 1.7;
    margin: 0 0 18px;
}

@media (max-width: 480px) {
    .bento-main p {
        font-size: 0.95rem;
        margin: 0 0 15px;
    }
}

.bento-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .bento-actions {
        gap: 10px;
    }
}

.bento-card h3 {
    margin: 0 0 8px;
    color: var(--dark);
    font-size: 1.2rem;
}

@media (max-width: 480px) {
    .bento-card h3 {
        font-size: 1.1rem;
    }
}

.bento-card p {
    margin: 0;
    color: #64748b;
    font-weight: 600;
    line-height: 1.7;
}

@media (max-width: 480px) {
    .bento-card p {
        font-size: 0.9rem;
    }
}

.how-it-works {
    padding: 70px 0;
    background: #fff;
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .how-it-works {
        padding: 35px 0;
    }
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .steps-grid {
        gap: 12px;
    }
}

.step-card {
    background: linear-gradient(180deg, rgba(34, 197, 94, 0.10), rgba(255, 255, 255, 0.98));
    color: var(--dark);
    border-radius: 20px;
    padding: 22px;
    border: 1px solid rgba(22, 163, 74, 0.18);
    box-shadow: 0 18px 45px rgba(2, 6, 23, 0.08);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 55px rgba(2, 6, 23, 0.12);
}

@media (max-width: 768px) {
    .step-card {
        padding: 20px;
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .step-card {
        padding: 18px 15px;
        border-radius: 14px;
    }
}

.step-num {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    background: rgba(22, 163, 74, 0.16);
    color: var(--primary-dark);
    border: 1px solid rgba(22, 163, 74, 0.22);
    margin-bottom: 12px;
}

@media (max-width: 480px) {
    .step-num {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
}

.step-card h3 {
    margin: 0 0 8px;
    font-size: 1.2rem;
}

@media (max-width: 480px) {
    .step-card h3 {
        font-size: 1.1rem;
    }
}

.step-card p {
    margin: 0;
    color: #475569;
    font-weight: 700;
    line-height: 1.7;
}

@media (max-width: 480px) {
    .step-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

.home-masonry {
    padding: 70px 0;
    background: linear-gradient(180deg, #fff, #f8fafc);
}

@media (max-width: 768px) {
    .home-masonry {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .home-masonry {
        padding: 35px 0;
    }
}

.masonry-grid {
    columns: 3 260px;
    column-gap: 14px;
}

@media (max-width: 768px) {
    .masonry-grid {
        columns: 2 200px;
        column-gap: 12px;
    }
}

@media (max-width: 480px) {
    .masonry-grid {
        columns: 1 100%;
        column-gap: 0;
    }
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 14px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #eee;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.masonry-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
    .masonry-item {
        margin-bottom: 12px;
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .masonry-item {
        margin-bottom: 10px;
        border-radius: 12px;
    }
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
}

.home-cta {
    padding: 70px 0 90px;
    background: #fff7ed;
}

.home-cta {
    padding: 70px 0 90px;
    background: #F0FDF4;
}

@media (max-width: 768px) {
    .home-cta {
        padding: 50px 0 70px;
    }
}

@media (max-width: 480px) {
    .home-cta {
        padding: 35px 0 50px;
    }
}

.cta-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at 50% 0%, rgba(22, 163, 74, 0.10), transparent 50%), #fff;
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
}

@media (max-width: 480px) {
    .cta-card {
        padding: 28px 18px;
        border-radius: 16px;
    }
}

.cta-card h2 {
    margin: 8px 0 8px;
    color: var(--dark);
    font-size: 2.2rem;
}

@media (max-width: 768px) {
    .cta-card h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .cta-card h2 {
        font-size: 1.5rem;
        line-height: 1.2;
    }
}

.cta-card p {
    margin: 0;
    color: #475569;
    font-weight: 600;
    line-height: 1.7;
    max-width: 720px;
}

@media (max-width: 480px) {
    .cta-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .cta-actions {
        gap: 10px;
        width: 100%;
    }

    .cta-actions .btn {
        flex: 1;
        justify-content: center;
    }
}

.cta-strip {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

@media (max-width: 768px) {
    .cta-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .cta-strip {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

.cta-strip-item {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #eee;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.cta-strip-item {
    border-color: var(--border-soft);
}

@media (max-width: 480px) {
    .cta-strip-item {
        border-radius: 12px;
    }
}

.cta-strip-item img {
    transform: scale(1.02);
    transition: transform 0.35s ease;
}

.cta-strip-item:hover img {
    transform: scale(1.06);
}

.cta-strip-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .cta-strip-item img {
        height: 140px;
    }
}

@media (max-width: 480px) {
    .cta-strip-item img {
        height: 180px;
    }
}

.moments-section {
    padding: 70px 0 40px;
    background: linear-gradient(180deg, rgba(255, 247, 237, 0.85), rgba(255, 255, 255, 0));
}

@media (max-width: 768px) {
    .moments-section {
        padding: 50px 0 30px;
    }
}

@media (max-width: 480px) {
    .moments-section {
        padding: 35px 0 25px;
    }
}

.moments-wrap {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 18px;
    align-items: stretch;
}

@media (max-width: 991px) {
    .moments-wrap {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .moments-wrap {
        gap: 12px;
    }
}

.moments-copy {
    background: radial-gradient(circle at 18% 0%, rgba(230, 81, 0, 0.12), transparent 46%), #fff;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 26px;
    box-shadow: var(--shadow-soft);
}

@media (max-width: 768px) {
    .moments-copy {
        padding: 22px 18px;
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .moments-copy {
        padding: 18px 15px;
        border-radius: 12px;
    }
}

.moments-copy h2 {
    margin: 8px 0 10px;
    color: var(--dark);
    font-size: 2.2rem;
    line-height: 1.15;
}

@media (max-width: 768px) {
    .moments-copy h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .moments-copy h2 {
        font-size: 1.5rem;
        line-height: 1.2;
    }
}

.moments-copy p {
    margin: 0;
    color: #475569;
    font-weight: 600;
    line-height: 1.7;
}

@media (max-width: 480px) {
    .moments-copy p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

.moments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

@media (max-width: 991px) {
    .moments-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

@media (max-width: 520px) {
    .moments-grid {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}

.moments-img {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    box-shadow: 0 16px 40px rgba(2, 6, 23, 0.10);
    transform: translateY(0);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

@media (max-width: 480px) {
    .moments-img {
        border-radius: 12px;
    }
}

.moments-img:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lift);
}

.moments-img img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 0.45s ease;
}

@media (max-width: 991px) {
    .moments-img img {
        height: 160px;
    }
}

@media (max-width: 520px) {
    .moments-img img {
        height: 180px;
    }
}

.moments-img:hover img {
    transform: scale(1.06);
}

@media (max-width: 991px) {
    .masonry-grid {
        columns: 2 220px;
    }

    .about-mixed-grid {
        grid-template-columns: 1fr !important;
    }

    .warm-split {
        grid-template-columns: 1fr;
    }

    .comfort-split {
        grid-template-columns: 1fr;
    }

    .warm-media img {
        min-height: 260px;
    }

    .cta-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .masonry-grid {
        columns: 1;
    }

    .cta-strip {
        grid-template-columns: 1fr;
    }

    .cta-strip-item img {
        height: 170px;
    }
}

.reviews-grid-static {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 26px;
}

@media (max-width: 991px) {
    .reviews-grid-static {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .reviews-grid-static {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

/* =========================================
   4. GALERÍA CARRUSEL (NUEVO)
   ========================================= */
.gallery-section {
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

.gallery-container {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 5%;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.gallery-container::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    flex: 0 0 auto;
    /* NO estirar */
    width: 300px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    scroll-snap-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    position: relative;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Recorta la imagen para llenar el cuadro */
}

/* =========================================
   5. TOURS GRID (CORREGIDO)
   ========================================= */
.section-padding {
    padding: 80px 0;
}

.center-text {
    text-align: center;
    margin-bottom: 50px;
}

.center-text h2 {
    font-size: 2.5rem;
    color: var(--dark);
    font-weight: 800;
}

.tag-orange {
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    /* Grilla responsiva automática */
    gap: 30px;
}

.home-tour-card {
    background: rgba(255, 255, 255, 0.96);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 16px 45px rgba(2, 6, 23, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid var(--border-soft);
    display: flex;
    flex-direction: column;
    /* Para empujar footer al fondo */
}

.home-tour-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lift);
}

/* IMAGEN DEL TOUR - FIJA Y CORTADA */
.ht-img {
    width: 100%;
    height: 250px;
    /* Altura obligatoria */
    object-fit: cover;
    /* Evita deformaciones */
    display: block;
}

.ht-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ht-body h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark);
    font-weight: 700;
}

.ht-body p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    flex: 1;
}

.ht-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: auto;
}

.ht-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
}

.btn-small {
    background: var(--dark);
    color: white;
    padding: 8px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-small:hover {
    background: var(--primary);
    transform: translateY(-1px);
}

@media (max-width: 600px) {
    .tours-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ht-img {
        height: 190px;
    }

    .ht-body {
        padding: 16px;
    }

    .ht-body h3 {
        font-size: 1.1rem;
    }

    .ht-body p {
        font-size: 0.95rem;
    }

    .ht-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .ht-price {
        text-align: left;
    }

    .btn-small {
        width: 100%;
        text-align: center;
    }
}

.center-btn-wrapper {
    text-align: center;
    margin-top: 60px;
}

.btn-link {
    color: var(--dark);
    font-weight: 700;
    font-size: 1.1rem;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 5px;
    transition: 0.3s;
}

.btn-link:hover {
    color: var(--primary);
    padding-bottom: 8px;
}

/* =========================================
   6. VIDEOS / REELS (NUEVO)
   ========================================= */
.video-section {
    background: linear-gradient(180deg, #0b1220, #111827);
    padding: 100px 0;
    color: white;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.video-card {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 9/16;
    /* Formato Vertical */
    background: #000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border: 1px solid #333;
    position: relative;
    transition: transform 0.3s;
}

.video-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.video-card iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* =========================================
   7. PANEL INTERACTIVO DE INICIO
   ========================================= */
.interactive-planner {
    padding: 80px 0 40px;
}

.planner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: start;
}

.planner-copy h2 {
    font-size: 2.8rem;
    color: var(--dark);
    margin: 10px 0;
}

.planner-copy p {
    font-size: 1.05rem;
    max-width: 620px;
    line-height: 1.6;
}

.planner-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.planner-pills .pill {
    background: rgba(22, 163, 74, 0.10);
    color: var(--primary-dark);
    padding: 8px 14px;
    border-radius: 30px;
    font-weight: 800;
    border: 1px solid rgba(22, 163, 74, 0.18);
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.planner-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin: 15px 0;
}

.planner-highlights div {
    background: linear-gradient(180deg, rgba(34, 197, 94, 0.10), #ffffff);
    color: var(--dark);
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(22, 163, 74, 0.18);
    box-shadow: 0 10px 25px rgba(2, 6, 23, 0.06);
}

.planner-highlights strong {
    display: block;
}

.planner-highlights small {
    color: #475569;
    font-weight: 700;
}

.planner-highlights i {
    margin-right: 6px;
    color: var(--primary);
}

.planner-note {
    background: #ecfeff;
    border: 1px solid #67e8f9;
    color: #0ea5e9;
    padding: 12px 15px;
    border-radius: 10px;
    font-weight: 700;
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.planner-card {
    background: white;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.planner-card::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 20% 20%, rgba(22, 163, 74, 0.08), transparent 35%);
}

.planner-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.planner-card h3 {
    margin: 0;
    color: var(--dark);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #9ca3af;
    font-size: 0.8rem;
    margin: 0;
}

.live-status {
    background: #ecfdf3;
    color: #15803d;
    padding: 6px 12px;
    border-radius: 30px;
    font-weight: 700;
    border: 1px solid #bbf7d0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.live-status .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.2);
}

.planner-form label {
    font-weight: 700;
    color: #334155;
    display: block;
    margin-top: 10px;
    margin-bottom: 6px;
}

.planner-form input,
.planner-form select,
.planner-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    font-family: inherit;
    background: #f8fafc;
}

.planner-form textarea {
    resize: vertical;
}

.planner-form .form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
}

.planner-live {
    background: rgba(34, 197, 94, 0.10);
    color: var(--dark);
    padding: 12px;
    border-radius: 12px;
    margin: 12px 0;
    border: 1px solid rgba(22, 163, 74, 0.18);
}

.planner-summary {
    background: #ffffff;
    padding: 12px;
    border-radius: 10px;
    border: 1px dashed rgba(22, 163, 74, 0.35);
    font-size: 0.95rem;
    line-height: 1.5;
}

.planner-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* =========================================
 codex/add-new-styles-and-sections-in-admin-panel-j1bqse
   8. SECCIÓN NOSOTROS HOME
   ========================================= */
.about-home {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: center;
}

.about-subtitle {
    font-size: 1.05rem;
    color: #475569;
    margin: 8px 0 10px;
}

.about-body {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 20px;
}

.about-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.about-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.about-media-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    animation: fadeUp 0.6s ease both;
}

.about-media-card img,
.about-media-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   9. SECCIÓN PACKS (FONDO DINÁMICO)

   8. SECCIÓN PACKS (FONDO DINÁMICO)
 main
   ========================================= */
.packs-section-dynamic {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 140px 0;
    position: relative;
    text-align: center;
    color: white;
}

.packs-section-dynamic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
}

.content-center {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.tag-white {
    background: white;
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.packs-section-dynamic h2 {
    color: white;
    font-size: 3.5rem;
    margin: 25px 0;
}

.packs-section-dynamic p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.benefits li {
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-large {
    padding: 18px 50px;
    font-size: 1.2rem;
}

/* =========================================
 codex/add-new-styles-and-sections-in-admin-panel-j1bqse
   10. FOOTER & MODAL

   9. FOOTER & MODAL - MOBILE OPTIMIZED
 main
   ========================================= */
.main-footer {
    background: #ffffff;
    color: #0f172a;
    padding: 60px 0 0;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 1fr;
    gap: 40px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.footer-logo {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0 0 12px;
    color: #0f172a;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 12px;
}

.footer-logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.footer-desc {
    color: rgba(15, 23, 42, 0.55);
    font-weight: 600;
    line-height: 1.7;
    margin: 0 0 18px;
    font-size: 0.9rem;
}

.footer-socials {
    display: flex;
    gap: 8px;
}

.footer-socials a {
    color: rgba(15, 23, 42, 0.5);
    font-size: 1rem;
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.10);
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(22, 163, 74, 0.25);
}

.footer-col h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(15, 23, 42, 0.55);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-links a i {
    font-size: 0.65rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(3px);
}

.footer-links a:hover i {
    transform: translateX(3px);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(15, 23, 42, 0.55);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

a.footer-contact-item:hover {
    color: var(--primary);
}

.footer-contact-item i {
    color: var(--primary);
    font-size: 1rem;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    color: rgba(15, 23, 42, 0.35);
    font-size: 0.82rem;
    font-weight: 600;
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .main-footer {
        padding: 40px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-links a {
        justify-content: center;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .footer-contact-list {
        align-items: center;
    }
}

/* Reviews */
.reviews-section {
    background-color: #f9fafb;
    padding: 80px 0;
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .reviews-section {
        padding: 35px 0;
    }
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.review-card {
    background: white;
    padding: 28px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.06);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.08);
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    background: rgba(22, 163, 74, 0.10);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--primary);
    font-size: 1.1rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 5000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background-color: #fff;
    padding: 32px;
    border-radius: 24px;
    width: 92%;
    max-width: 520px;
    position: relative;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    animation: modalSlideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@media (max-width: 480px) {
    .modal-content {
        padding: 24px 20px;
        border-radius: 20px;
        width: 96%;
    }
}

.close-modal {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 1.8rem;
    cursor: pointer;
    color: #ccc;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.modal-header {
    margin-bottom: 24px;
}

.modal-form .form-group {
    margin-bottom: 18px;
}

.modal-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 700;
    color: var(--dark);
    font-size: 0.9rem;
}

.modal-form input,
.modal-form select,
.modal-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #f0f0f0;
    border-radius: 14px;
    font-size: 1rem;
    font-family: 'Quicksand', sans-serif;
    background: #fafafa;
    transition: all 0.3s ease;
}

.modal-form textarea {
    min-height: 90px;
    resize: vertical;
}

.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
    outline: none;
    background: #fff;
    border-color: rgba(22, 163, 74, 0.40);
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.10);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Animaciones */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(3px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

@keyframes floaty {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }

    100% {
        transform: translateY(0);
    }
}

.hero-dots {
    animation: floaty 6.5s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-dots {
        animation: none;
    }

    .bento-card:hover,
    .home-tour-card:hover,
    .cta-strip-item:hover img,
    .btn-primary:hover,
    .hs-btn:hover {
        transform: none;
    }

    .reveal {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }
}

/* WhatsApp flotante */
.wa-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 4000;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.wa-float-btn {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #fff;
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.35);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    animation: waPulse 2.6s ease-in-out infinite;
}

.wa-float-btn i {
    font-size: 1.55rem;
}

@keyframes waPulse {
    0% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-3px) scale(1.04);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}

.wa-float:hover .wa-float-btn {
    background: #20bd5a;
    transform: scale(1.08);
}

@media (max-width: 520px) {
    .wa-float {
        right: 14px;
        bottom: 14px;
    }

    .wa-float-btn {
        width: 52px;
        height: 52px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wa-float-btn {
        animation: none;
    }
}

/* Stats Counter Section */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary), var(--theme-accent, #22C55E));
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stats-section {
        padding: 40px 0;
    }
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 2.4rem;
    }
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.9;
}

/* Responsive Global Overrides */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .gallery-item {
        width: 220px;
        height: 300px;
    }

    .about-actions {
        flex-direction: column;
    }

    .section-padding {
        padding: 50px 0;
    }

    .center-text {
        margin-bottom: 35px;
    }

    .center-text h2 {
        font-size: 2rem;
    }

    .packs-section-dynamic {
        padding: 80px 0;
    }

    .packs-section-dynamic h2 {
        font-size: 2.4rem;
    }

    .benefits {
        gap: 20px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .section-padding {
        padding: 35px 0;
    }

    .center-text {
        margin-bottom: 28px;
    }

    .center-text h2 {
        font-size: 1.6rem;
    }

    .tag-orange {
        font-size: 0.82rem;
    }

    .packs-section-dynamic {
        padding: 60px 0;
        background-attachment: scroll;
    }

    .packs-section-dynamic h2 {
        font-size: 1.8rem;
        margin: 18px 0;
    }

    .packs-section-dynamic p {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .benefits {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 24px;
    }

    .benefits li {
        font-size: 0.95rem;
        justify-content: center;
    }

    .btn-large {
        padding: 14px 32px;
        font-size: 1rem;
    }

    .gallery-section {
        padding: 50px 0;
    }

    .gallery-item {
        width: 260px;
        height: 340px;
        border-radius: 16px;
    }

    .video-section {
        padding: 50px 0;
    }

    .video-grid {
        gap: 16px;
        margin-top: 25px;
    }

    .center-btn-wrapper {
        margin-top: 35px;
    }

    .home-tour-card {
        border-radius: 16px;
    }

    .tours-grid {
        gap: 16px;
    }
}