/* ============================================================
   TUCU HOME 2 — CSS COMPLETO (Header, Footer, Secciones)
   Paleta: Naranja #f78c1e | Morado #6b2c91 | Azul #48a9df
   ============================================================ */

/* Google Fonts Outfit */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800&display=swap');

/* ---- RESET SCOPE ---- */
.tucu-header *,
.tucu-footer *,
.tucu-promos-intro *,
.tucu-promos-grid-section *,
.tucu-servicios *,
.tucu-tienda *,
.tucu-como-funciona *,
.tucu-home-2-content * {
    box-sizing: border-box;
    font-family: 'Outfit', 'Inter', system-ui, sans-serif;
}

/* ============================================================
   HEADER
   ============================================================ */

.tucu-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    border-bottom: 3px solid #f78c1e;
}

.tucu-header__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 72px;
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Logo */
.tucu-header__logo {
    flex-shrink: 0;
}
.tucu-header__logo img {
    max-width: 180px;
    height: auto;
    display: block;
}
.tucu-header__logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #f78c1e;
    text-decoration: none;
}

/* Nav Desktop */
.tucu-header__nav {
    flex: 1;
}
.tucu-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.tucu-nav__item {
    position: relative;
}
.tucu-nav__link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0.5rem 0.85rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: #2d2d2d;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}
.tucu-nav__link:hover {
    background: #fff3e0;
    color: #f78c1e;
}
.tucu-nav__arrow {
    font-size: 0.7rem;
    transition: transform 0.2s;
}
.tucu-nav__item--has-dropdown:hover .tucu-nav__arrow {
    transform: rotate(180deg);
}

/* Dropdown */
.tucu-nav__dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    padding: 0.5rem 0;
    list-style: none;
    margin: 0;
    z-index: 1000;
    border: 1px solid #f0f0f0;
}
.tucu-nav__item--has-dropdown:hover .tucu-nav__dropdown {
    display: block;
}
.tucu-nav__dropdown li a {
    display: block;
    padding: 0.55rem 1.2rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: #2d2d2d;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}
.tucu-nav__dropdown li a:hover {
    background: #fff3e0;
    color: #f78c1e;
}
.tucu-nav__divider {
    border-top: 1px solid #f0f0f0;
    margin-top: 0.4rem;
    padding-top: 0.4rem;
}
.tucu-nav__divider a {
    font-weight: 700 !important;
    color: #f78c1e !important;
}

/* Actions */
.tucu-header__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}
.tucu-header__cart {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff3e0;
    color: #f78c1e;
    text-decoration: none;
    position: relative;
    transition: background 0.2s, transform 0.2s;
}
.tucu-header__cart:hover {
    background: #f78c1e;
    color: #fff;
    transform: scale(1.05);
}
.tucu-header__cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #6b2c91;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hamburger */
.tucu-header__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s;
}
.tucu-header__hamburger:hover { background: #fff3e0; }
.tucu-header__hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #2d2d2d;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Mobile menu */
.tucu-mobile-menu {
    display: none;
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
    padding: 1rem 2rem;
}
.tucu-mobile-menu.is-open {
    display: block;
}
.tucu-mobile-menu__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.tucu-mobile-menu__list li a {
    display: block;
    padding: 0.6rem 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2d2d2d;
    text-decoration: none;
    border-bottom: 1px solid #f5f5f5;
    transition: color 0.2s;
}
.tucu-mobile-menu__list li a:hover { color: #f78c1e; }

@media (max-width: 1000px) {
    .tucu-header__nav { display: none; }
    .tucu-header__hamburger { display: flex; }
}
@media (max-width: 480px) {
    .tucu-header__inner { padding: 0 1rem; }
}

/* ============================================================
   UTILS & BUTTONS
   ============================================================ */

.tucu-btn {
    display: inline-block;
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.25s;
    cursor: pointer;
    border: 2px solid transparent;
    letter-spacing: 0.3px;
}
.tucu-btn--orange {
    background: #f78c1e;
    color: #fff;
    border-color: #f78c1e;
}
.tucu-btn--orange:hover {
    background: #e07000;
    border-color: #e07000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247,140,30,0.35);
}
.tucu-btn--purple {
    background: #6b2c91;
    color: #fff;
    border-color: #6b2c91;
}
.tucu-btn--purple:hover {
    background: #54226f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107,44,145,0.35);
}
.tucu-btn--green {
    background: #2e9c6e;
    color: #fff;
    border-color: #2e9c6e;
}
.tucu-btn--green:hover {
    background: #237a56;
    transform: translateY(-2px);
}
.tucu-btn--outline-orange {
    background: transparent;
    color: #f78c1e;
    border-color: #f78c1e;
}
.tucu-btn--outline-orange:hover {
    background: #f78c1e;
    color: #fff;
    transform: translateY(-2px);
}
.tucu-btn--lg {
    padding: 0.9rem 2.5rem;
    font-size: 1rem;
}

/* Section Header */
.tucu-section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.tucu-section-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    color: #2d2d2d;
    margin: 0 0 0.5rem;
    line-height: 1.2;
}
.tucu-section-sub {
    font-size: 1rem;
    color: #666;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}
.tucu-section-header--light .tucu-section-title {
    color: #fff;
}
.tucu-section-header--light .tucu-section-sub {
    color: rgba(255,255,255,0.85);
}

/* ============================================================
   INTRO PROMOS MUNDIALERAS
   ============================================================ */

.tucu-promos-intro {
    background: linear-gradient(135deg, #6b2c91 0%, #4a1d6b 100%);
    padding: 3rem 2rem;
    color: #fff;
    overflow: hidden;
    position: relative;
}
.tucu-promos-intro::before {
    content: '';
    position: absolute;
    right: 5%;
    top: 10%;
    font-size: 4rem;
    opacity: 0.15;
    pointer-events: none;
}

.tucu-intro__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}

.tucu-intro__left {}

.tucu-intro__title {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin: 0 0 1.5rem;
}
.tucu-intro__title-promos {
    font-size: clamp(3.5rem, 10vw, 6rem);
    font-weight: 800;
    color: #f78c1e;
    letter-spacing: -3px;
}
.tucu-intro__title-mundialeras {
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    margin-top: -10px;
}
.tucu-intro__title-en {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: 600;
    color: #f78c1e;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 6px;
}

.tucu-intro__slogan {
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    border-left: 4px solid #f78c1e;
    margin-bottom: 1.5rem;
}
.tucu-intro__slogan h2 {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 800;
    margin: 0 0 4px;
    color: #fff;
}
.tucu-intro__slogan h2 span {
    color: #f78c1e;
}
.tucu-intro__slogan p {
    margin: 0;
    font-weight: 600;
    opacity: 0.85;
}

.tucu-intro__right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 260px;
}

.tucu-intro__valid-banner {
    background: #D140E0;
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    text-align: center;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(209,64,224,0.4);
}

.tucu-intro__locations {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.tucu-intro__locations li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 0.6rem 0.9rem;
}
.tucu-intro__locations .tucu-loc-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.tucu-intro__locations strong {
    font-size: 0.88rem;
    display: block;
    color: #f78c1e;
}
.tucu-intro__locations span {
    font-size: 0.8rem;
    opacity: 0.8;
}

.tucu-intro__web-banner {
    background: #f78c1e;
    color: #fff;
    font-weight: 800;
    font-size: 0.95rem;
    text-align: center;
    padding: 0.7rem 1rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(247,140,30,0.45);
}

@media (max-width: 768px) {
    .tucu-intro__inner {
        grid-template-columns: 1fr;
    }
    .tucu-intro__right {
        min-width: auto;
    }
}

/* ============================================================
   PROMOS GRID
   ============================================================ */

.tucu-promos-grid-section {
    padding: 3rem 2rem;
    background: #f8f9fa;
}
.tucu-promos-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.tucu-promo-card {
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    border: 2px solid transparent;
}
.tucu-promo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}
.tc-bg-lavender { background: #f3e5f5; border-color: #e1bee7; }
.tc-bg-cream { background: #fff9e6; border-color: #ffeeba; }
.tc-bg-purple-light { background: #ede7f6; border-color: #d1c4e9; }

.tucu-promo-flag {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 1.8rem;
}
.tucu-promo-card__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-grow: 1;
}
.tucu-promo-card__text { flex: 1; }
.tucu-promo-top {
    font-size: 0.78rem;
    font-weight: 700;
    color: #6b2c91;
    margin: 0 0 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.tucu-promo-main {
    font-size: 1.25rem;
    font-weight: 800;
    color: #2d2d2d;
    margin: 0 0 6px;
    line-height: 1.25;
}
.tucu-promo-sub {
    font-size: 0.82rem;
    font-weight: 600;
    color: #6b2c91;
    margin: 0 0 12px;
    line-height: 1.4;
}
.tucu-promo-price-badge {
    display: inline-block;
    font-weight: 800;
    font-size: 2.2rem;
    color: #f78c1e;
    line-height: 1;
}
.tucu-promo-price-badge small { font-size: 1rem; vertical-align: super; }
.tucu-promo-price-badge.combo {
    background: #f78c1e;
    color: #fff;
    padding: 6px 16px;
    border-radius: 25px;
    font-size: 1.6rem;
}
.tucu-promo-card__image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tucu-promo-card__image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.tucu-promo-footer {
    font-size: 0.78rem;
    font-weight: 700;
    color: #6b2c91;
    text-transform: uppercase;
    margin-top: 0.75rem;
    border-top: 1px dashed rgba(107,44,145,0.3);
    padding-top: 0.6rem;
    letter-spacing: 0.5px;
}

/* ============================================================
   SERVICIOS
   ============================================================ */

.tucu-servicios {
    padding: 4rem 2rem;
    background: #fff;
}
.tucu-servicios__container {
    max-width: 1280px;
    margin: 0 auto;
}
.tucu-servicios__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}
.tucu-servicio-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1.5px solid #f0f0f0;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.tucu-servicio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.tucu-servicio-card__img-wrap {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f8f9fa;
}
.tucu-servicio-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.tucu-servicio-card:hover .tucu-servicio-card__img-wrap img {
    transform: scale(1.05);
}
.tucu-servicio-card__body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.tucu-servicio-card__badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #fff3e0;
    color: #f78c1e;
    align-self: flex-start;
}
.tucu-badge--purple { background: #f3e5f5; color: #6b2c91; }
.tucu-badge--orange { background: #fff3e0; color: #f78c1e; }
.tucu-badge--green { background: #e8f5e9; color: #2e9c6e; }

.tucu-servicio-card__body h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #2d2d2d;
    margin: 0;
    line-height: 1.25;
}
.tucu-servicio-card__body p {
    font-size: 0.88rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
    flex: 1;
}
.tucu-servicio-card__price {
    font-size: 1.2rem;
    font-weight: 800;
    color: #f78c1e;
    margin-top: auto;
}

/* ============================================================
   TIENDA SECCIONES
   ============================================================ */

.tucu-tienda {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}
.tucu-tienda__container {
    max-width: 1280px;
    margin: 0 auto;
}
.tucu-tienda__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.tucu-tienda-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1.5px solid #f0f0f0;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.tucu-tienda-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.1);
}
.tucu-tienda-card__img-wrap {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f8f9fa;
}
.tucu-tienda-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.tucu-tienda-card:hover .tucu-tienda-card__img-wrap img {
    transform: scale(1.05);
}
.tucu-tienda-card__body {
    padding: 1.2rem;
    text-align: center;
}
.tucu-tienda-card__body h3 {
    font-size: 1rem;
    font-weight: 800;
    color: #2d2d2d;
    margin: 0 0 0.75rem;
}
.tucu-tienda__cta-wrap {
    text-align: center;
}

/* ============================================================
   CÓMO FUNCIONA
   ============================================================ */

.tucu-como-funciona {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #6b2c91 0%, #4a1d6b 100%);
    color: #fff;
}
.tucu-como-funciona__container {
    max-width: 1100px;
    margin: 0 auto;
}
.tucu-como-funciona__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}
.tucu-paso-card {
    background: rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.12);
    transition: background 0.3s, transform 0.3s;
}
.tucu-paso-card:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-4px);
}
.tucu-paso-card__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}
.tucu-paso-card__icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.tucu-paso-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #f78c1e;
    margin: 0 0 0.75rem;
}
.tucu-paso-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.85;
    margin: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */

.tucu-footer {
    background: #2d2d2d;
    color: #ccc;
    font-family: 'Outfit', sans-serif;
}
.tucu-footer__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
}
.tucu-footer__logo img {
    max-width: 160px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}
.tucu-footer__brand-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: #f78c1e;
}
.tucu-footer__tagline {
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 1rem 0 0.5rem;
    opacity: 0.75;
}
.tucu-footer__email a {
    color: #f78c1e;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
}
.tucu-footer__hours {
    font-size: 0.8rem;
    opacity: 0.6;
    margin: 4px 0 0;
}

.tucu-footer__col-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 1rem;
}
.tucu-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.tucu-footer__links a {
    font-size: 0.88rem;
    color: #aaa;
    text-decoration: none;
    transition: color 0.2s;
}
.tucu-footer__links a:hover { color: #f78c1e; }

.tucu-footer__locations {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.tucu-footer__locations li {
    font-size: 0.82rem;
    line-height: 1.5;
}
.tucu-footer__locations strong {
    color: #f78c1e;
    display: block;
}
.tucu-footer__locations span { opacity: 0.7; }

.tucu-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    padding: 1.25rem 2rem;
}
.tucu-footer__bottom p {
    font-size: 0.82rem;
    margin: 0;
    opacity: 0.55;
}

/* Footer responsive */
@media (max-width: 1024px) {
    .tucu-footer__inner {
        grid-template-columns: 1fr 1fr;
    }
    .tucu-footer__col--brand {
        grid-column: 1 / -1;
    }
}
@media (max-width: 576px) {
    .tucu-footer__inner {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   RESPONSIVE GENERAL
   ============================================================ */

@media (max-width: 576px) {
    .tucu-promos-grid {
        grid-template-columns: 1fr;
    }
    .tucu-servicios__grid,
    .tucu-tienda__grid,
    .tucu-como-funciona__grid {
        grid-template-columns: 1fr;
    }
    .tucu-promo-card__content {
        flex-direction: column;
        text-align: center;
    }
    .tucu-btn--lg { width: 100%; }
}
