@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');
:root {
    --primary: #E31937;
    /* Rojo Aviator */
    --primary-dark: #C0102E;
    --secondary: #000000;
    --secondary-light: #1A1A1A;
    --accent: #FFD700;
    --light: #FFFFFF;
    --light-gray: #F8F8F8;
    --dark-gray: #2D2D2D;
    --text: #333333;
    --text-light: #EEEEEE;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--light-gray);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

/* Header Estilo Premium */
header {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: var(--light);
    padding: 3rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgwLDAsMCwwLjAzKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgZmlsbD0idXJsKCNwYXR0ZXJuKSIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIvPjwvc3ZnPg==');
    opacity: 0.4;
}

.header-content {
    position: relative;
    z-index: 2;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease;
}

.logo-img {
    width: 90px;
    height: 90px;
    margin-right: 20px;
    border-radius: 15px;
    border: 3px solid var(--primary);
    box-shadow: 0 10px 30px rgba(227, 25, 55, 0.3);
    object-fit: cover;
}

.logo-text {
    text-align: left;
}

.logo-main {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--light);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
}

.logo-main::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.logo-main:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.logo-sub {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 5px;
    margin-top: 5px;
    text-transform: uppercase;
}

.tagline {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    position: relative;
    padding-bottom: 20px;
    font-weight: 500;
    animation: fadeIn 1.5s ease;
}

.tagline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Botón CTA Premium */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: var(--light);
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 10px 20px rgba(227, 25, 55, 0.3);
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(227, 25, 55, 0.4);
}

.cta-button::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: 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

/* Sección Features Premium */
.features-section {
    padding: 6rem 0;
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyMjcsMjUsNTUsMC4wMykiLz48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IGZpbGw9InVybCgjcGF0dGVybikiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiLz48L3N2Zz4=');
    opacity: 0.1;
    z-index: -1;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 3rem;
    color: var(--secondary);
    position: relative;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: var(--primary);
    margin: 20px auto;
    border-radius: 5px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--light);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(227, 25, 55, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary);
    transition: width 0.3s ease;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
    width: 100%;
    opacity: 0.1;
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.feature-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
}

/* Sección Testimonials Premium */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyMjcsMjUsNTUsMC4wNSkiLz48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IGZpbGw9InVybCgjcGF0dGVybikiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiLz48L3N2Zz4=');
    opacity: 0.3;
}

.testimonials-section .section-title {
    color: var(--light);
}

.testimonials-section .section-title::after {
    background: var(--accent);
}

.testimonials-slider {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 3rem;
    margin: 0 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-left: 5px solid var(--primary);
    position: relative;
    backdrop-filter: blur(5px);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: rgba(227, 25, 55, 0.2);
    font-family: serif;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    font-weight: 700;
    color: var(--accent);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.testimonial-author::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background: var(--primary);
    margin-right: 15px;
}

/* Sección Pricing Premium */
.pricing-section {
    padding: 6rem 0;
    background-color: var(--light);
}

.pricing-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 4rem;
}

.price-card {
    background: var(--light);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(227, 25, 55, 0.2);
    transition: all 0.4s ease;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--primary);
}

.price-card-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.price-card-title {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.price {
    font-size: 4rem;
    color: var(--primary);
    font-weight: 700;
    margin: 1.5rem 0;
    position: relative;
    display: inline-block;
}

.price::before {
    content: '$';
    position: absolute;
    top: 0;
    left: -20px;
    font-size: 1.5rem;
}

.price-period {
    font-size: 1.2rem;
    color: var(--text);
    opacity: 0.7;
    display: block;
    margin-top: -10px;
}

.price-features {
    list-style: none;
    margin: 2.5rem 0;
}

.price-features li {
    margin-bottom: 1.2rem;
    position: relative;
    padding-left: 2.5rem;
    font-size: 1.1rem;
}

.price-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: var(--primary);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    mask-position: center;
    background-color: var(--primary);
}

.price-button {
    width: 100%;
    text-align: center;
    margin-top: 2rem;
}

/* Footer Premium */
footer {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: var(--text-light);
    padding: 5rem 0 3rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    margin-bottom: 3rem;
    text-align: center;
}

.footer-logo-img {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    border: 3px solid var(--primary);
    margin-bottom: 1.5rem;
}

.footer-logo-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.footer-logo-subtext {
    font-size: 1.2rem;
    color: var(--primary);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary);
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.disclaimer {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 3rem;
    max-width: 800px;
    text-align: center;
    line-height: 1.8;
}

.copyright {
    margin-top: 3rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(227, 25, 55, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(227, 25, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(227, 25, 55, 0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .logo-main {
        font-size: 2.8rem;
    }

    .logo-sub {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    header {
        padding: 2rem 0 3rem;
    }

    .logo-container {
        flex-direction: column;
        text-align: center;
    }

    .logo-img {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }

    .logo-text {
        text-align: center;
    }

    .logo-main {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .cta-button {
        padding: 15px 35px;
        font-size: 1rem;
    }

    .features-section,
    .testimonials-section,
    .pricing-section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .price {
        font-size: 3rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .logo-main {
        font-size: 2rem;
    }

    .logo-sub {
        font-size: 1rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-title {
        font-size: 1.4rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .price-card {
        padding: 2rem;
    }
}
