* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    /* font-family: 'Segoe UI', Arial, sans-serif; */
    background: #222;
    color: #222;
    min-height: 100vh;
    position: relative;
}

.header {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 18px 0 10px 0;
    position: relative;
    z-index: 10;
}
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo img {
    height: 38px;
    margin-right: 6px;
}
.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
}
.logo-text .qr {
    color: #ff9800;
}
.subtitle {
    font-size: 0.8rem;
    color: #888;
    margin-left: 8px;
    letter-spacing: 2px;
}
.header .coming-soon {
    background: #ff9800;
    color: #fff;
    font-weight: 600;
    border-radius: 16px;
    padding: 6px 18px;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(255,152,0,0.08);
    animation: pulse 1.5s infinite alternate;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero {
    position: relative;
    /* background: linear-gradient(90deg, #fff 60%, #ff9800 100%); */
    background-color: #fff;
    overflow: hidden;
    padding: 64px 0 0 0;

    display: flex;
    align-items: stretch;
    min-height: 500px;
}
.hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    text-align: left;
    position: relative;
    z-index: 2;

    margin-top: -100px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 12px;
    line-height: 1.1;
}
.hero .highlight {
    color: #ff9800;
    font-size: 3rem;
    font-weight: 900;
}
.hero .desc {
    font-size: 1.25rem;
    color: #444;
    margin-bottom: 32px;
}

.btn-launch {
    background: #222;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 24px;
    padding: 12px 32px;
    box-shadow: 0 2px 8px rgba(34,34,34,0.08);
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    margin-bottom: 24px;
    max-width: 320px;
    width: 100%;
    text-align: center;
    display: inline-block;
}
.btn-launch:hover {
    background: #ff9800;
    color: #fff;
    transform: scale(1.05);
}
.location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ff9800;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 32px;
}
.hero-img {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    position: absolute;
    right: 80px;
    top: 0;
    bottom: 0;
    z-index: 2;
    max-width: 340px;
}
.hero-img img {
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    border: none;
    background: none;
    height: 100%;
    width: auto;
    object-fit: contain;
}


.features {
    background: #fff;
    padding: 64px 0 32px 0;
    position: relative;
}
.features .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}
.feature-cards {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}
.card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(255,152,0,0.10);
    padding: 36px 28px;
    width: 260px;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
    border: 1.5px solid #ffe0b2;
    position: relative;
}
.card:hover {
    box-shadow: 0 8px 32px rgba(255,152,0,0.18);
    transform: translateY(-4px) scale(1.02);
    border-color: #ff9800;
}
.card .icon {
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card h3 {
    font-size: 1.3rem;
    color: #222;
    font-weight: 700;
    margin-bottom: 10px;
}
.card p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.6;
}

.notify {
    background: #222;
    color: #fff;
    padding: 64px 0 0 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.notify .container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 32px 48px 32px;
    position: relative;
    z-index: 2;
    background: none;
    box-shadow: none;
}
.notify-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
}
.notify-soon {
    color: #ff9800;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 18px;
    display: block;
}
.notify-contact {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.notify-email {
    font-size: 1.15rem;
    color: #ff9800;
    font-weight: 700;
    letter-spacing: 1px;
    background: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}
.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, #ff9800, #ffb35c, #ff9800);
    background-size: 200% 100%;
    background-position: 0% 0%;
    color: #fff;
    font-weight: 800;
    border-radius: 24px;
    padding: 18px 44px;
    font-size: 1.15rem;
    text-decoration: none;
    border: none;
    box-shadow: 0 4px 16px rgba(255,152,0,0.18);
    margin-top: 0;
    transition: background-position 2s linear, box-shadow 0.2s, transform 0.2s;
}
.contact-btn:hover {
    background-position: 100% 0%;
    box-shadow: 0 8px 32px rgba(255,152,0,0.22);
    transform: scale(1.04);
}

.notify-footer-sep {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #fff 0%, #eee 100%);
    margin: 0 auto;
    opacity: 0.7;
}

.footer {
    background: #222;
    color: #fff;
    padding: 12px 0 24px 0;
    text-align: center;
    font-size: 1rem;
    letter-spacing: 1px;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}
.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px;
    position: relative;
    z-index: 2;
}
.footer p {
    margin: 0;
    font-size: 1rem;
    color: #fff;
    opacity: 0.85;
}
.footer-location {
    color: #ff9800;
    font-size: 1.08rem;
    margin-top: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.footer-location svg {
    vertical-align: middle;
    margin-right: 2px;
}

/* Barra naranja animada tipo tubo */
.footer-animated-bar {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 12px;
    background: linear-gradient(90deg, #ff9800, #ffc582, #ff9800);
    background-size: 400% 100%;
    background-position: 0% 0%;
    opacity: 0.85;
    z-index: 1;
    animation: moveBar 12s linear infinite;
}
@keyframes moveBar {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 0%; }
}



.hero-bg-svg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
    /* margin-top: 20px; */
}
.hero-bg-svg svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* en móvil: más pequeño y más abajo */
@media (max-width: 768px){
  .bg-wave{
    width: 110vw;
    right: -10vw;
    opacity: .75;
  }
}

@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        min-height: 420px;
        padding: 32px 0 0 0;
    }
    .hero .container {
        text-align: center;
        padding: 0 8px;
        justify-content: flex-start;
        margin-top: 0 !important;
    }
    .hero-img {
        position: static;
        max-width: 220px;
        margin: 24px auto 0 auto;
        display: block;
        height: 180px;
    }
    .hero-img img {
        height: 100%;
        width: auto;
        margin: 0 auto;
        max-width: 100%;
    }
 
    .header .container {
        flex-direction: column;
        gap: 12px;
        padding: 0 8px;
    }
    .logo-text {
        font-size: 1.3rem;
    }
    .subtitle {
        font-size: 0.7rem;
    }
    .coming-soon {
        font-size: 0.9rem;
        padding: 6px 16px;
    }
    .features .container {
        padding: 0 8px;
    }
    .feature-cards {
        gap: 18px;
        margin-bottom: 32px;
    }
    .card {
        width: 90vw;
        max-width: 320px;
        margin: 0 auto 18px auto;
        padding: 28px 12px;
    }
}
@media (max-width: 600px) {
    .hero-bg-svg{
        display: none !important;
    }

    .hero-img {
        max-width: 180px;
        height: 120px;
    }
    .hero-img img {
        height: 100%;
        width: auto;
        max-width: 100%;
    }

    .header .container {
        /* flex-direction: column;
        gap: 8px;
        padding: 0 8px; */
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .btn-launch {
        display: block;
        margin: 0 auto 24px auto;
        text-align: center;
    }

    .logo-text {
        font-size: 1.1rem;
    }
    .subtitle {
        font-size: 0.7rem;
    }
    .coming-soon {
        display: none !important;
    }
    .footer .container {
        padding: 0 8px;
    }
    .footer p {
        font-size: 0.9rem;
    }
    .notify .container {
        padding: 0 8px 32px 8px;
    }
    .notify-title {
        font-size: 1.1rem;
    }
    .contact-btn {
        padding: 14px 18px;
        font-size: 1rem;
    }
    .footer-location {
        font-size: 0.95rem;
    }
    .feature-cards {
        gap: 12px;
        margin-bottom: 24px;
    }
    .card {
        width: 98vw;
        max-width: 340px;
        margin: 0 auto 12px auto;
        padding: 18px 6px;
    }
}