@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: space-between;
}

/*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;
}

.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;
    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);
}

/* EXAMPLES SECTION */
.examples-section {
    height: 400px;
    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(50% - 60px));
}

.stat-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00c6ff 0%, #dc05f7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    border: 1px solid #1a0033;
}

.stat-circle:hover {
    transform: scale(1.05);
}

.stat-circle i {
    font-size: 4rem;
    color: white;
}

.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;
}

@media (max-width: 768px) {
    .examples-section {
        height: auto;
        margin: 10px 0;
    }

    .purple-background {
        height: 40%;
    }

    .stats-row {
        transform: translateY(0);
        padding: 40px 0;
    }

    .stat-circle {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
    }

    .stat-circle i {
        font-size: 3rem;
    }

    .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;
    }
}
