/* Fuentes premium con más personalidad */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@400;500;700;900&family=Oswald:wght@400;600;700&display=swap');

/* Variables de diseño */
:root {
    --primary-color: #e62e00;
    --secondary-color: #1a1a1a;
    --light-color: #f5f5f5;
    --dark-color: #121212;
    --accent-color: #ffbb00;
    --primary-rgb: 230, 46, 0;
    --secondary-rgb: 26, 26, 26;
    --transition-all: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(45deg,
        rgba(230, 46, 0, 0.1) 0%,       /* Rojo opaco */
        rgba(230, 46, 0, 0.1) 15%,
        rgba(255, 202, 40, 0.1) 15%,    /* Amarillo opaco */
        rgba(255, 202, 40, 0.1) 30%,
        rgba(230, 46, 0, 0.1) 30%,
        rgba(230, 46, 0, 0.26) 45%,
        rgba(245, 245, 245, 0.5) 45%,  /* Gris claro semi-transparente */
        rgba(245, 245, 245, 0.5) 60%,
        rgba(230, 46, 0, 0.1) 60%,
        rgba(230, 46, 0, 0.1) 75%,
        rgba(255, 202, 40, 0.1) 75%,
        rgba(255, 202, 40, 0.1) 90%,
        rgba(230, 46, 0, 0.1) 90%,
        rgba(230, 46, 0, 0.1) 100%
    );
    background-size: 400% 400%;
    animation: gradientAnimation 8s ease infinite;
    background-attachment: fixed;
    color: var(--secondary-color);
    overflow-x: hidden;
    line-height: 1.8;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Barra de navegación futurista */
.navbar {
    background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(30,30,30,0.95) 100%) !important;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-all);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.navbar.scrolled {
      background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(30,30,30,0.95) 100%) !important;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 2px;
    color: white !important;
    text-shadow: 0 0 10px rgba(var(--primary-rgb), 0.5);
    transition: var(--transition-all);
}

.navbar-brand img {
    height: 50px;
    margin-right: 10px;
    filter: drop-shadow(0 0 5px var(--primary-color));
}

.nav-link {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1.5rem !important;
    position: relative;
    transition: var(--transition-all);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-all);
}

.nav-link:hover::before {
    width: 80%;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px var(--primary-color);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


/* Estilos para la sección de tarifas */
.pricing-hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(230, 46, 0, 0.4) 100%), 
                url('../fotos/bushidotodos.jpg') center/cover no-repeat;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    margin-bottom: 5rem;
    position: relative;
    margin-top: 76px;

}

.pricing-hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.pricing-hero h1 span {
    font-size: 35px;

    color: var(--primary-color);
}

.pricing-hero p {
    font-size: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.pricing-section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.pricing-swiper {
    width: 100%;
    padding: 3rem 0;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: var(--transition-all);
    position: relative;
    max-width: 600px;
    height: 450px !important;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(var(--primary-rgb), 0.2);
}

.card-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-color) 100%);
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.card-header::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.plan-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    color: whitesmoke;
}

.price-box {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    position: relative;
    z-index: 2;
}

.price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    line-height: 1;
    color: var(--primary-color);
}

.period {
    font-size: 1rem;
    opacity: 0.8;
    align-self: flex-end;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.705);
}

.card-body {
    padding: 2rem;
}

.features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

.features li i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.btn-cta {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    width: 100%;
    border-radius: 50px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-all);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
}

.btn-cta:hover {
    background: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.4);
}


/* Estilos para los beneficios */
.pricing-benefits {
    background: var(--light-color);
    padding: 5rem 0;
    position: relative;
}

.pricing-benefits h2 {
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    position: relative;
}

.pricing-benefits h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition-all);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(var(--primary-rgb), 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.benefit-item h3 {
    font-family: 'Oswald', sans-serif;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.benefit-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Estilos del swiper */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(0, 0, 0, 0.2);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color) !important;
    background: rgba(255, 255, 255, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: var(--transition-all);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-color);
    color: white !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 1200px) {
    .pricing-hero h1 {
        font-size: 4rem;
    }
}

@media (max-width: 992px) {
    .pricing-hero {
        height: 40vh;
    }
    
    .pricing-hero h1 {
        font-size: 3.5rem;
    }
    
    .pricing-card {
        max-width: 300px;
    }
}


@media (max-width: 768px) {
    .pricing-hero {
        height: 35vh;
        clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    }
    
    .pricing-hero h1 {
        font-size: 3rem;
    }
    
    .pricing-hero p {
        font-size: 1.2rem;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
    .imgfot{
        display: none;
    }
}

@media (max-width: 576px) {
    .pricing-hero {
        height: 30vh;
    }
    
    .pricing-hero h1 {
        font-size: 2.5rem;
    }
    
    .pricing-hero p {
        font-size: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}