body {
    margin: 0;
    font-family: 'Raleway', sans-serif;
    background: linear-gradient(135deg, #2e0b0b, #1a0a0a);
    color: #ffffff;
    text-align: center;
}

header {
    padding: 40px;
    background: linear-gradient(135deg, #4a0a0a, #b30000);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
}

header::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 50, 50, 0.2), transparent);
    animation: pulse 5s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.2);
        opacity: 0.9;
    }
}

.stars, .gifts {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.star, .gift {
    position: absolute;
    width: 15px;
    height: 15px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.5;
    animation: floatAnimation 10s linear infinite;
    animation-delay: calc(var(--delay) * 1s);
}

.star {
    background-image: url('img/star.png');
}

.gift {
    background-image: url('img/gift.png');
}

@keyframes floatAnimation {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-10vh) translateX(calc(-50vw + 100vw * random())) rotate(360deg);
        opacity: 0;
    }
}

.hero h1 {
    font-size: 60px;
    font-weight: 900;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ffffff, #ff4d4d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 0px 25px rgba(255, 100, 100, 1);
    letter-spacing: 3px;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    background-color: rgba(0, 0, 0, 0.4);
    display: inline-block;
    box-shadow: 0 0 20px rgba(255, 50, 50, 0.3);
    animation: glow 1.5s alternate infinite ease-in-out;
}

@keyframes glow {
    0% {
        text-shadow: 0px 0px 20px rgba(255, 100, 100, 0.8), 0px 0px 30px rgba(255, 0, 0, 0.6);
    }
    100% {
        text-shadow: 0px 0px 30px rgba(255, 100, 100, 1), 0px 0px 40px rgba(255, 150, 0, 0.7);
    }
}

.hero p {
    font-size: 22px;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 0 10px rgba(255, 100, 100, 0.3);
}

.cta-button {
    display: inline-block;
    padding: 14px 35px;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    border-radius: 30px;
    text-decoration: none;
    background: linear-gradient(135deg, #ff3333, #cc0000);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(200, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.cta-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
}

.cta-button:active {
    transform: scale(0.95);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
}

.cta-button:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(200, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-button:hover::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
}

.cta-button:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.8);
}


#services {
    padding: 10px 20px;
    position: relative;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(255, 50, 50, 0.2);
    border: 4px solid transparent;
    margin: 60px auto;
    max-width: 1200px;
}

#services h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 35px;
    color: #fff;
    text-shadow: 0px 0px 15px rgba(255, 100, 100, 0.7);
    letter-spacing: 1.5px;
}

.service-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    padding: 20px;
    border-radius: 15px;
}

.service {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(255, 50, 50, 0.2);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    min-height: 300px;
}

.service:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.3);
}

#about, #contact, #coming-soon {
    padding: 60px 20px;
}

.will-available {
    position: relative;
    background: rgba(142, 39, 30, 0.3);
    border: 2px dashed rgba(255, 100, 100, 0.6);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(213, 50, 50, 0.561);
    transition: 0.3s;
    min-height: 150px;
}

.will-available:hover {
    transform: scale(1.05);
    background: rgba(255, 50, 50, 0.3);
    box-shadow: 0 0 20px rgba(238, 50, 50, 0.5);
}

.soon {
    display: inline-block;
    background: linear-gradient(45deg, #ff0000, #ff7300, #ff0000);
    color: white;
    font-weight: bold;
    font-size: 1.2em;
    padding: 8px 15px;
    border-radius: 10px;
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
    animation: spulse 3s infinite;
    margin-top: auto;
}

@keyframes spulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
    }
}

.coming-soon {
    background: rgba(255, 100, 0, 0.2);
    border: 2px dashed rgba(255, 150, 0, 0.6);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(255, 150, 0, 0.3);
    transition: 0.3s;
}

.coming-soon:hover {
    transform: scale(1.05);
    background: rgba(255, 150, 0, 0.3);
    box-shadow: 0 0 20px rgba(255, 150, 0, 0.5);
}

.message {
    color: #ff4d4d;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    border-bottom: 2px solid transparent;
}

.message:hover {
    color: #ff0000;
    border-bottom: 2px solid #ff0000;
}

.trust-banner {
    text-align: center;
    background: linear-gradient(135deg, #b30000 10%, #8a0000 90%);
    padding: 50px 25px;
    border-radius: 20px;
    margin: 50px auto;
    width: 90%;
    max-width: 700px;
    box-shadow: 0px 12px 35px rgba(255, 100, 100, 0.2);
    position: relative;
    overflow: hidden;
}

.trust-banner::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 10%, transparent 70%);
    animation: pulseGlow 6s infinite ease-in-out;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.trust-banner h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 35px;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0px 0px 15px rgba(255, 100, 100, 0.7);
    letter-spacing: 1.5px;
}

.trust-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 24px;
    border-radius: 15px;
    width: 270px;
    box-shadow: 0 6px 18px rgba(255, 100, 100, 0.15);
    font-size: 1.3rem;
    font-weight: 500;
    text-align: center;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.trust-box {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-in-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trust-box:hover {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0.3);
}


@media (max-width: 768px) {
    .trust-banner {
        padding: 40px 20px;
    }

    .trust-banner h2 {
        font-size: 2rem;
    }

    .trust-box {
        width: 90%;
        max-width: 300px;
    }
}

#how-to-use h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 35px;
    color: #fff;
    text-shadow: 0px 0px 15px rgba(255, 100, 100, 0.7);
    letter-spacing: 1.5px;
}

#how-to-use {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 18px;
    margin: 50px auto;
    width: 80%;
    max-width: 850px;
    box-shadow: 0px 5px 20px rgba(255, 100, 100, 0.15);
}

.steps-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.step {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.18);
    padding: 10px 25px;
    border-radius: 12px;
    width: 90%;
    max-width: 520px;
    font-size: 1.3rem;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(255, 100, 100, 0.12);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.step::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 100, 100, 0.1) 10%, transparent 60%);
    transition: 0.5s;
}

.step:hover::before {
    top: 0;
    left: 0;
}

.step:hover {
    transform: scale(1.06);
    box-shadow: 0 8px 25px rgba(255, 100, 100, 0.18);
}

.step span {
    font-size: 2rem;
    margin-right: 18px;
}

.step p {
    margin: 0;
    text-align: left;
}

.step a {
    color: #ff4d4d;
    font-weight: 700;
    text-decoration: none;
}

.step a:hover {
    text-decoration: underline;
}

#about, #contact {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    margin: 40px auto;
    width: 85%;
    max-width: 850px;
    padding: 45px;
    box-shadow: 0px 5px 20px rgba(255, 100, 100, 0.15);
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
}

footer {
    background: #1a0a0a;
    padding: 25px;
    text-align: center;
    border-top: 2px solid rgba(255, 100, 100, 0.2);
    margin-top: 40px;
}

.oferta {
    color: #ff4d4d;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    border-bottom: 2px solid transparent;
    margin-bottom: 15px;
    display: inline-block;
}

.oferta:hover {
    color: #ff0000;
    border-bottom: 2px solid #ff0000;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service, .step, .trust-box {
    animation: fadeInUp 0.6s ease-in-out;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 16px;
    }

    .service-container {
        grid-template-columns: 1fr;
    }
}

.faq-container {
    max-width: 800px;
    margin: 60px auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 0 20px rgba(255, 50, 50, 0.2);
}

.faq-container h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 35px;
    color: #fff;
    text-shadow: 0px 0px 15px rgba(255, 100, 100, 0.7);
    letter-spacing: 1.5px;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 100, 100, 0.3);
    padding: 15px 0;
}

.faq-item h3 {
    cursor: pointer;
    font-weight: 700;
    transition: color 0.3s ease;
    text-align: left;
}

.faq-item h3:hover {
    color: #ff4d4d;
}

.faq-item p {
    display: none;
    margin-top: 10px;
    text-align: left;
}

.faq-item.active p {
    display: block;
}

#advantages {
    text-align: center;
    padding: 50px 20px;
    color: #fff;
    margin: 60px auto;
    max-width: 1200px;
}

#advantages h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 35px;
    color: #fff;
    text-shadow: 0px 0px 15px rgba(255, 100, 100, 0.7);
    letter-spacing: 1.5px;
}

.advantages-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.advantage {
    background: linear-gradient(135deg, #3a0a0a, #2a0a0a);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.advantage::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff0000, #ff7300);
}

.advantage:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 25px rgba(255, 0, 0, 0.3);
}

.advantage span {
    font-size: 42px;
    display: block;
    margin-bottom: 12px;
}

.advantage h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ffb3b3;
}

.advantage p {
    color: #f0f0f0;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff4d4d, transparent);
}