/* Reset y base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    background: linear-gradient(180deg, #DE2F33 0%, #C01C23 50%, #A1262D 100%);
}

body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    background: linear-gradient(180deg, #DE2F33 0%, #C01C23 50%, #A1262D 100%);
    min-height: 100vh;
    color: #fff;
    width: 100%;
}

.anton-regular {
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  .anton-bold {
    font-family: "Anton", sans-serif;
    font-weight: 700;
    font-style: normal;
  }


/* Container principal */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.container-fluid {
    width: 100%;
    margin: 0;
    padding: 0;
}
/* Header / Logo */
.header-container {
    background: linear-gradient(180deg, #DE2F33 0%, #C01C23 50%, #A1262D 100%);
    padding: 20px 0;
}
.header {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    
}

.logo-image {
    width: 100%;
    max-width: 600px;
    height: auto;
}

.tagline {
    display: inline-block;
    background:linear-gradient(90deg, #EC383A 0%, #F36B47 25%, #F36B47 75%, #EC383A 100%);
    padding: 10px 30px;
    border-radius: 15px;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Sección Canje */
.canje-section {
    text-align: center;
    margin-bottom: 60px;
}

.canje-title {
    font-size: 2rem;
    margin-bottom: 30px;
    font-family: "Anton", sans-serif;
    font-weight: 400;
}

.canje-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.canje-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    color: #C62828;
    padding: 20px 30px;
    border-radius: 8px;
    text-decoration: none;
    min-width: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.canje-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.canje-btn-text {
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
}

.canje-btn-flag {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Separador / Mensaje Marketing */
.marketing-message {
    background: #fff;
    color: #C62828;
    padding: 30px;
    text-align: center;
    margin-bottom: 50px;
}

.marketing-message p {
    font-size: 30px;
    font-family: "Anton", sans-serif;
    font-weight: 400;
    line-height: 1.4;
}

/* Sección Qué es */
.about-section {
    text-align: center;
    margin-bottom: 50px;
}

.about-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.about-icon svg {
    width: 80px;
    height: 80px;
    fill: #fff;
}

.about-title {
    font-size: 2.2rem;
    font-family: "Anton", sans-serif;
    font-weight: 400;
    margin-bottom: 10px;
}

.about-divider {
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, #EC383A 0%, #F36B47 50%, #EC383A 100%);
    margin: 0 auto 30px;
    border-radius: 5px;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0 auto 30px;
}

.about-description strong {
    font-weight: 700;
}

/* Botón presentación */
.presentation-btn {
    display: inline-block;
    background: #fff;
    color: #C62828;
    padding: 15px 40px;
    border-radius: 25px;
    text-decoration: none;
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-size: 20px;
    border: 2px solid #fff;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.presentation-btn:hover {
    background: transparent;
    color: #fff;
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px 20px;
    background: rgba(0, 0, 0, 0.3);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer-separator {
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 30px 15px;
    }

    .logo-icon {
        width: 50px;
    }

    .logo-text {
        font-size: 2rem;
    }

    .tagline {
        font-size: 0.85rem;
        padding: 8px 20px;
    }

    .canje-title {
        font-size: 1.4rem;
    }

    .canje-buttons {
        flex-direction: column;
        align-items: center;
    }

    .canje-btn {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        max-width: 280px;
        padding: 15px 20px;
    }

    .canje-btn-text {
        text-align: left;
        margin-bottom: 0;
    }

    .canje-btn-flag {
        width: 50px;
        height: 33px;
    }

    .marketing-message {
        padding: 0px;
    }

    .marketing-message p {
        font-size: 1.4rem;
    }

    .about-icon svg {
        width: 50px;
        height: 50px;
    }

    .about-title {
        font-size: 1.6rem;
    }

    .about-description {
        font-size: 0.95rem;
    }

    .presentation-btn {
        padding: 12px 30px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .logo {
        flex-direction: column;
        gap: 10px;
    }

    .logo-text {
        font-size: 1.8rem;
    }

    .tagline {
        font-size: 0.75rem;
        padding: 6px 15px;
    }
}
