@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Quicksand:wght@300..700&display=swap");

body {
    font-family: "Lato", serif;
}

:root {
    --button-gradient: radial-gradient(
        circle farthest-corner at 10% 20%,
        rgba(255, 94, 247, 1) 17.8%,
        rgba(2, 245, 255, 1) 100.2%
    );
}

.img-logo {
    height: 50px;
}
@media (min-width: 768px) {
    .img-logo {
        height: 70px;
    }
}
/*BANNER*/
.banner {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url("/img/banner.gif");
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}

/*NAVBAR*/
.navbar {
    background-color: rgba(0, 0, 0, 0.5) !important;
}

.navbar-brand,
.nav-link {
    color: white !important;
    margin-right: 10px;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.8) !important;
    cursor: pointer;
}

/*BUTTON BANNER*/
.banner-content-container {
    padding: 0 20px 100px 20px;
    width: 100%;
}

.banner-text {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.button-banner {
    position: relative;
    width: 100%;
    height: 62px;
    color: #fff;
    font-size: 17px;
    font-weight: bold;
    border-radius: 1rem;
    border: none;
    background: rgba(128, 0, 128, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.button-banner:hover {
    background: var(--button-gradient);
    transform: scale(1.05);
}

/* Tablet */
@media (min-width: 768px) {
    .banner-content-container {
        padding: 0 0 100px 60px;
    }

    .banner-text {
        font-size: 1.75rem;
        max-width: 500px;
    }

    .button-banner {
        width: 200px;
        height: 55px;
        font-size: 15px;
    }
}

/* Desktop */
@media (min-width: 992px) {
    .banner-content-container {
        padding: 0 0 100px 100px;
    }

    .banner-text {
        font-size: 5rem;
        max-width: 1000px;
        margin-bottom: 60px;
    }

    .button-banner {
        width: 250px;
        height: 65px;
        font-size: 25px;
    }
}

/* Pantallas muy pequeñas */
@media (max-width: 576px) {
    .banner {
        height: 80vh;
    }

    .banner-content-container {
        padding: 0 20px 100px 20px;
    }

    .banner-text {
        font-size: 2.5rem;
    }

    .button-banner {
        width: 100%;
    }
}

/*SERVICES*/
.background-section {
    background: url("/img/PAGINA_2.png") no-repeat center center;
    background-size: cover;
    color: white;
    min-height: 100vh;
    width: 100%;
    padding: 4rem 0;
}

.gradient-title {
    background: linear-gradient(90deg, #00c6ff 0%, #b066ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

.services-content-section {
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    padding: 20px;
    height: 100%;
}

.main-title {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(90deg, #00c6ff 0%, #b066ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 1.8rem;
    }
}

.services-section ul {
    list-style: none;
    padding-left: 0;
}

.services-section li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    font-size: 1.1rem;
}

.services-section li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #b066ff;
}

/*PRICES*/
.prices-section {
    padding: 100px 0;
}

.prices-title {
    background: linear-gradient(90deg, #00c6ff 0%, #b066ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

.pack-title {
    color: #fff;
    font-weight: bold;
    font-size: 1.5rem;
}

.background-pricing {
    background: #1a0033;
}

.border-prices {
    border: #1a0033 solid 1px;
}

.price {
    font-size: 2rem;
}

.price-text {
    font-size: 1.2rem;
}

.price-divider {
    margin: 0 50px;
    border: 1px solid;
}

.button-prices {
    color: #fff !important;
    font-size: 17px;
    font-weight: bold;
    border-radius: 1rem;
    border: none;
    background: rgba(128, 0, 128, 1);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    padding: 10px 30px;
}

.button-prices:hover {
    background: var(--button-gradient);
}

/* STATISTICS CARDS SECTION */
.stats-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-card {
    background: #f0f0f0;
    border-radius: 15px;
    padding: 30px 25px;
    position: relative;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    overflow: hidden;
}

/* Bordes activos con colores de la web */
.stat-card:nth-child(1) {
    border-left: 4px solid #ff5ef7; /* Fucsia */
}

.stat-card:nth-child(2) {
    border-left: 4px solid #02f5ff; /* Azul claro */
}

.stat-card:nth-child(3) {
    border-left: 4px solid #b066ff; /* Lilas */
}

.stat-card:nth-child(4) {
    border-left: 4px solid #00c6ff; /* Azul claro alternativo */
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00c6ff 0%, #dc05f7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.stat-circle:hover {
    transform: scale(1.1);
}

/* Iconos SVG minimalistas para cada tarjeta */
.stat-circle .icon {
    width: 40px;
    height: 40px;
    fill: white;
}

.stat-circle svg {
    width: 60px;
    height: 60px;
    fill: white;
}

.stat-circle i {
    font-size: 3rem;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #4f46e5 0%, #dc05f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-title {
    font-size: 1.1rem;
    font-weight: bold;
    line-height: 1.3;
    text-transform: uppercase;
    color: #2d3748;
    margin-bottom: 10px;
}

.stat-description {
    font-size: 0.9rem;
    color: #718096;
    font-style: italic;
    line-height: 1.4;
}

/* EXAMPLES SECTION - Mantenemos la sección original para compatibilidad */
.examples-section {
    height: 500px;
    margin: 100px 0 0 0;
}

.purple-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 45%;
    background-color: #1a0033;
}

.stats-row {
    position: relative;
    transform: translateY(calc(45% - -25px));
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #1a0033;
}

.stat-text {
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.4;
    text-transform: uppercase;
    color: #1a0033;
    margin: 0;
}

/* Responsive para las nuevas tarjetas de estadísticas */
@media (max-width: 768px) {
    .stats-section {
        padding: 50px 0;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .stat-card {
        padding: 25px 20px;
        text-align: center;
    }
    
    .stat-circle {
        width: 90px;
        height: 90px;
        margin: 0 auto 15px;
    }
    
    .stat-circle .icon {
        font-size: 2rem;
    }
    
    .stat-circle svg {
        width: 40px;
        height: 40px;
    }
    
    .stat-circle i {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }
    
    .stat-title {
        font-size: 1rem;
    }
    
    .stat-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .stats-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-card {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-title {
        font-size: 0.9rem;
    }
}

/* Responsive para la sección original de examples */
@media (max-width: 768px) {
    .examples-section {
        height: auto;
        margin: 10px 0;
    }

    .purple-background {
        height: 40%;
    }

    .stats-row {
        transform: translateY(0);
        padding: 40px 0;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-text {
        font-size: 0.8rem;
    }

    .col-12 {
        margin-bottom: 2rem;
    }

    .col-12:last-child {
        margin-bottom: 0;
    }
}

/* Contact Section */
.background-contact {
    background: url("/img/PAGINA_4.png") no-repeat center center;
    background-size: cover;
    color: white;
    min-height: 60vh;
    width: 100%;
    padding: 4rem 0;
}

.contact-title {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(90deg, #00c6ff 0%, #b066ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0066ff 0%, #6600ff 100%);
}

.contact-icon i {
    font-size: 1.7rem;
    color: white;
}

.contact-info a:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2.5rem;
    }
}
