﻿* {
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: url("https://wallpapers.com/images/hd/4k-tech-jhhwwcbe8m7ilyau.jpg") no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
/* ============================================ 🔹 NAVBAR ============================================ */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255,127,80,0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background 0.4s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ff7f50;
    letter-spacing: 1px;
}

    .logo img {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        border: 2px solid rgba(255,127,80,0.5);
        filter: drop-shadow(0 0 10px #8a2be2);
        animation: logoPulse 4s infinite alternate;
    }

@keyframes logoPulse {
    from {
        filter: drop-shadow(0 0 5px #ff7f50);
    }

    to {
        filter: drop-shadow(0 0 20px #8a2be2);
    }
}

nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

    nav a::after {
        content: '';
        height: 2px;
        width: 0;
        background: linear-gradient(90deg, #ff7f50, #8a2be2);
        position: absolute;
        bottom: -5px;
        left: 0;
        transition: 0.3s;
    }

    nav a:hover::after {
        width: 100%;
    }

    nav a:hover {
        color: #ff7f50;
    }
/* ============================================ 🔹 HERO SECTION ============================================ */

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    animation: fadeInHero 2s ease-in-out;
}

@keyframes fadeInHero {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 4rem;
    background: linear-gradient(90deg, #ff7f50, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textMove 6s infinite alternate;
}

@keyframes textMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.hero p {
    font-size: 1.5rem;
    margin-top: 1rem;
    color: #ccc;
    animation: fadeIn 3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ============================================ 🔹 BOTÓN PRINCIPAL ============================================ */

.hero a.button {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: 50px;
    background: linear-gradient(90deg, #ff7f50, #8a2be2);
    color: #fff;
    text-decoration: none;
    transition: 0.4s;
}

    .hero a.button:hover {
        background: none;
        border: 2px solid #ff7f50;
        color: #ff7f50;
        transform: scale(1.05);
    }
/* ============================================ 🔹 CARDS FUTURISTAS ============================================ */

.cards-container {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 20px;
    padding: 2rem;
    width: 280px;
    text-align: center;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.3);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    border: 1px solid rgba(255,127,80,0.3);
    backdrop-filter: blur(6px);
}

    .card img {
        width: 80px;
        margin-bottom: 1rem;
        filter: drop-shadow(0 0 10px #ff7f50);
        transition: transform 0.5s ease;
    }

    .card h3 {
        margin-bottom: 0.5rem;
        color: #ff7f50;
    }

    .card p {
        font-size: 0.95rem;
        color: #ccc;
    }

    .card:hover {
        transform: translateY(-15px) scale(1.05);
        box-shadow: 0 0 40px rgba(255,127,80,0.5);
    }

        .card:hover img {
            transform: rotate(10deg) scale(1.1);
        }
/* ============================================ 🔹 FOOTER ============================================ */

footer {
    background: rgba(0, 0, 0, 0.7);
    border-top: 1px solid rgba(255,127,80,0.3);
    color: #ccc;
    text-align: center;
    padding: 2rem 1rem;
    backdrop-filter: blur(6px);
}

    footer .footer-content p:first-child {
        color: #ff7f50;
        font-weight: 600;
        letter-spacing: 1px;
    }

    footer .footer-content p:last-child {
        color: #aaa;
        margin-top: 0.5rem;
        font-size: 0.9rem;
    }
/* ============================================ 🔹 SCROLLBAR PERSONALIZADA ============================================ */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #8a2be2, #ff7f50);
    border-radius: 5px;
}

::-webkit-scrollbar-track {
    background: #111;
}
/* ============================================ 🔹 TARJETA DE CONTACTO ============================================ */

.contact-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    padding: 20px;
    text-align: center;
}

.page-title {
    font-size: 2.8rem;
    margin-bottom: 30px;
    background: linear-gradient(90deg, #ff7f50, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-card {
    width: 100%;
    max-width: 600px;
    padding: 35px 40px;
    background: rgba(20, 20, 20, 0.85);
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(138, 43, 226, 0.5);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,127,80,0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

    .contact-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 0 50px rgba(255,127,80,0.6);
    }

    .contact-card .form-group {
        margin-bottom: 20px;
        text-align: left;
    }

        .contact-card .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #ff7f50;
        }

    .contact-card .form-control {
        width: 100%;
        border-radius: 10px;
        padding: 12px;
        border: 1px solid rgba(255,127,80,0.3);
        background: rgba(0,0,0,0.4);
        color: #fff;
    }

        .contact-card .form-control::placeholder {
            color: #ccc;
            font-size: 1rem;
        }

    .contact-card textarea[asp-for="Mensaje"]::placeholder {
        font-size: 1.1rem;
    }

.btn-contact {
    background: linear-gradient(90deg, #ff7f50, #8a2be2);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

    .btn-contact:hover {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(255,127,80,0.5);
    }

.btn-contact-secondary {
    background: rgba(108, 117, 125, 0.8);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    border: none;
}

    .btn-contact-secondary:hover {
        background: rgba(108, 117, 125, 1);
        transform: scale(1.05);
    }
/* ============================================ 🔹 RESPONSIVE ============================================ */

@media (max-width: 768px) {
    .contact-card {
        padding: 25px 20px;
    }

    .page-title {
        font-size: 2rem;
    }
}
/* ============================================ 🔹 CARDS INFO (NO TOCAR) ============================================ */

.cards-container .card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

    .cards-container .card img {
        width: 100%;
        display: block;
        transition: transform 0.5s ease, opacity 0.5s ease;
    }

    .cards-container .card:hover img {
        transform: scale(1.1);
        opacity: 0.3;
    }

    .cards-container .card .card-info {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #fff;
        text-align: center;
        opacity: 0;
        transition: opacity 0.5s ease;
        padding: 15px;
        max-width: 90%;
    }

    .cards-container .card:hover .card-info {
        opacity: 1;
    }

.cards-container .card-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ff7f50;
}

.cards-container .card-info p {
    font-size: 1rem;
    line-height: 1.4;
}
/* Contenedor flotante WhatsApp + caja */

.whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
}
/* Icono de WhatsApp */

.whatsapp-float {
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .whatsapp-float img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        box-shadow: 0 0 15px rgba(0, 255, 0, 0.6);
    }

    .whatsapp-float:hover {
        transform: scale(1.1);
        box-shadow: 0 0 25px rgba(0, 255, 0, 0.8);
    }
/* Mini caja de texto */

.whatsapp-box {
    background: rgba(0, 255, 0, 0.1);
    color: #fff;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
    box-shadow: 0 0 10px rgba(0,255,0,0.4);
    white-space: nowrap;
    font-size: 0.9rem;
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

    .whatsapp-box:hover {
        opacity: 1;
        transform: translateX(-3px);
    }
/* ====== CARRUSEL (nuevo HERO) ====== */

.carousel-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.carousel {
    display: flex;
    width: 300%;
    height: 100%;
    animation: slide 36s infinite;
}
.carousel-title {
   font-size: 110%;
    color: yellow; 
    font-weight: 700;
    text-align: left;
    margin-left: 0; 
    padding-left: 0; 
}



    .carousel-title-list h2 {
        font-size: 1.8rem; 
        margin-bottom: 18px;
        font-weight: 700;
    }

    /* Lista */
    .carousel-title-list ul {
        padding-left: 20px;
    }

    .carousel-title-list li {
        margin-bottom: 10px;
    }

.carousel-item {
    position: relative;
    flex: 0 0 100%;
}

    .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(50%);
        transition: transform 0.8s ease;
    }

    .carousel-item:hover img {
        transform: scale(1.05);
    }

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    padding: 30px 35px;
    color: #fff;
    width: 40%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

    .carousel-caption h1 {
        color: #ffb07a;
        font-size: 2rem;
        margin-bottom: 15px;
    }

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .why-list li {
        margin-bottom: 10px;
        font-size: 1rem;
        display: flex;
        align-items: center;
        gap: 8px;
    }

.dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: linear-gradient(90deg, #ff7f50, #8a2be2);
    border-radius: 50%;
    color: #000;
    font-weight: bold;
}
/* Animación automática */

@keyframes slide {
    0%, 25% {
        transform: translateX(0);
    }

    33%, 58% {
        transform: translateX(-100%);
    }

    66%, 91% {
        transform: translateX(-200%);
    }

    100% {
        transform: translateX(0);
    }
}
/* ====== FOOTER ====== */

footer {
    text-align: center;
    padding: 25px;
    background-color: #0a0a0a;
    color: #fff;
    font-size: 0.95rem;
    border-top: 1px solid #222;
}
/* ====== RESPONSIVE ====== */

@media (max-width: 992px) {
    .carousel-caption {
        width: 80%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
    }

        .carousel-caption h1 {
            font-size: 1.5rem;
        }
}

@media (max-width: 480px) {
    .carousel-section {
        height: 80vh;
    }

    .carousel-caption {
        padding: 20px;
        width: 90%;
    }

        .carousel-caption h1 {
            font-size: 1.2rem;
        }
}
* {
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: url("https://wallpapers.com/images/hd/4k-tech-jhhwwcbe8m7ilyau.jpg") no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
/* ============================================ 🔹 NAVBAR ============================================ */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255,127,80,0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background 0.4s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ff7f50;
    letter-spacing: 1px;
}

    .logo img {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        border: 2px solid rgba(255,127,80,0.5);
        filter: drop-shadow(0 0 10px #8a2be2);
        animation: logoPulse 4s infinite alternate;
    }

@keyframes logoPulse {
    from {
        filter: drop-shadow(0 0 5px #ff7f50);
    }

    to {
        filter: drop-shadow(0 0 20px #8a2be2);
    }
}

nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

    nav a::after {
        content: '';
        height: 2px;
        width: 0;
        background: linear-gradient(90deg, #ff7f50, #8a2be2);
        position: absolute;
        bottom: -5px;
        left: 0;
        transition: 0.3s;
    }

    nav a:hover::after {
        width: 100%;
    }

    nav a:hover {
        color: #ff7f50;
    }
/* ============================================ 🔹 HERO SECTION ============================================ */

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    animation: fadeInHero 2s ease-in-out;
}

@keyframes fadeInHero {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 4rem;
    background: linear-gradient(90deg, #ff7f50, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textMove 6s infinite alternate;
}

@keyframes textMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.hero p {
    font-size: 1.5rem;
    margin-top: 1rem;
    color: #ccc;
    animation: fadeIn 3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ============================================ 🔹 BOTÓN PRINCIPAL ============================================ */

.hero a.button {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: 50px;
    background: linear-gradient(90deg, #ff7f50, #8a2be2);
    color: #fff;
    text-decoration: none;
    transition: 0.4s;
}

    .hero a.button:hover {
        background: none;
        border: 2px solid #ff7f50;
        color: #ff7f50;
        transform: scale(1.05);
    }
/* ============================================ 🔹 CARDS FUTURISTAS ============================================ */

.cards-container {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 20px;
    padding: 2rem;
    width: 280px;
    text-align: center;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.3);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    border: 1px solid rgba(255,127,80,0.3);
    backdrop-filter: blur(6px);
}

    .card img {
        width: 80px;
        margin-bottom: 1rem;
        filter: drop-shadow(0 0 10px #ff7f50);
        transition: transform 0.5s ease;
    }

    .card h3 {
        margin-bottom: 0.5rem;
        color: #ff7f50;
    }

    .card p {
        font-size: 0.95rem;
        color: #ccc;
    }

    .card:hover {
        transform: translateY(-15px) scale(1.05);
        box-shadow: 0 0 40px rgba(255,127,80,0.5);
    }

        .card:hover img {
            transform: rotate(10deg) scale(1.1);
        }
/* ============================================ 🔹 FOOTER ============================================ */

footer {
    background: rgba(0, 0, 0, 0.7);
    border-top: 1px solid rgba(255,127,80,0.3);
    color: #ccc;
    text-align: center;
    padding: 2rem 1rem;
    backdrop-filter: blur(6px);
}

    footer .footer-content p:first-child {
        color: #ff7f50;
        font-weight: 600;
        letter-spacing: 1px;
    }

    footer .footer-content p:last-child {
        color: #aaa;
        margin-top: 0.5rem;
        font-size: 0.9rem;
    }
/* ============================================ 🔹 SCROLLBAR PERSONALIZADA ============================================ */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #8a2be2, #ff7f50);
    border-radius: 5px;
}

::-webkit-scrollbar-track {
    background: #111;
}
/* ============================================ 🔹 TARJETA DE CONTACTO ============================================ */

.contact-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    padding: 20px;
    text-align: center;
}

.page-title {
    font-size: 2.8rem;
    margin-bottom: 30px;
    background: linear-gradient(90deg, #ff7f50, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-card {
    width: 100%;
    max-width: 600px;
    padding: 35px 40px;
    background: rgba(20, 20, 20, 0.85);
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(138, 43, 226, 0.5);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,127,80,0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

    .contact-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 0 50px rgba(255,127,80,0.6);
    }

    .contact-card .form-group {
        margin-bottom: 20px;
        text-align: left;
    }

        .contact-card .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #ff7f50;
        }

    .contact-card .form-control {
        width: 100%;
        border-radius: 10px;
        padding: 12px;
        border: 1px solid rgba(255,127,80,0.3);
        background: rgba(0,0,0,0.4);
        color: #fff;
    }

        .contact-card .form-control::placeholder {
            color: #ccc;
            font-size: 1rem;
        }

    .contact-card textarea[asp-for="Mensaje"]::placeholder {
        font-size: 1.1rem;
    }

.btn-contact {
    background: linear-gradient(90deg, #ff7f50, #8a2be2);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

    .btn-contact:hover {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(255,127,80,0.5);
    }

.btn-contact-secondary {
    background: rgba(108, 117, 125, 0.8);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    border: none;
}

    .btn-contact-secondary:hover {
        background: rgba(108, 117, 125, 1);
        transform: scale(1.05);
    }
/* ============================================ 🔹 RESPONSIVE ============================================ */

@media (max-width: 768px) {
    .contact-card {
        padding: 25px 20px;
    }

    .page-title {
        font-size: 2rem;
    }
}
/* ============================================ 🔹 CARDS INFO (NO TOCAR) ============================================ */

.cards-container .card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

    .cards-container .card img {
        width: 100%;
        display: block;
        transition: transform 0.5s ease, opacity 0.5s ease;
    }

    .cards-container .card:hover img {
        transform: scale(1.1);
        opacity: 0.3;
    }

    .cards-container .card .card-info {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #fff;
        text-align: center;
        opacity: 0;
        transition: opacity 0.5s ease;
        padding: 15px;
        max-width: 90%;
    }

    .cards-container .card:hover .card-info {
        opacity: 1;
    }

.cards-container .card-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ff7f50;
}

.cards-container .card-info p {
    font-size: 1rem;
    line-height: 1.4;
}
/* Contenedor flotante WhatsApp + caja */

.whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
}
/* Icono de WhatsApp */

.whatsapp-float {
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .whatsapp-float img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        box-shadow: 0 0 15px rgba(0, 255, 0, 0.6);
    }

    .whatsapp-float:hover {
        transform: scale(1.1);
        box-shadow: 0 0 25px rgba(0, 255, 0, 0.8);
    }
/* Mini caja de texto */

.whatsapp-box {
    background: rgba(0, 255, 0, 0.1);
    color: #fff;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
    box-shadow: 0 0 10px rgba(0,255,0,0.4);
    white-space: nowrap;
    font-size: 0.9rem;
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

    .whatsapp-box:hover {
        opacity: 1;
        transform: translateX(-3px);
    }
/* ====== CARRUSEL (nuevo HERO) ====== */

.carousel-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.carousel {
    display: flex;
    width: 300%;
    height: 100%;
    animation: slide 18s infinite;
}

.carousel-item {
    position: relative;
    flex: 0 0 100%;
}

    .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(50%);
        transition: transform 0.8s ease;
    }

    .carousel-item:hover img {
        transform: scale(1.05);
    }

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    padding: 30px 35px;
    color: #fff;
    width: 40%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

    .carousel-caption h1 {
        color: #ffb07a;
        font-size: 2rem;
        margin-bottom: 15px;
    }

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .why-list li {
        margin-bottom: 10px;
        font-size: 1rem;
        display: flex;
        align-items: center;
        gap: 8px;
    }

.dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: linear-gradient(90deg, #ff7f50, #8a2be2);
    border-radius: 50%;
    color: #000;
    font-weight: bold;
}
/* Animación automática */

@keyframes slide {
    0%, 25% {
        transform: translateX(0);
    }

    33%, 58% {
        transform: translateX(-100%);
    }

    66%, 91% {
        transform: translateX(-200%);
    }

    100% {
        transform: translateX(0);
    }
}
/* ====== FOOTER ====== */

footer {
    text-align: center;
    padding: 25px;
    background-color: #0a0a0a;
    color: #fff;
    font-size: 0.95rem;
    border-top: 1px solid #222;
}
/* ====== RESPONSIVE ====== */

@media (max-width: 992px) {
    .carousel-caption {
        width: 80%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
    }

        .carousel-caption h1 {
            font-size: 1.5rem;
        }
}

@media (max-width: 480px) {
    .carousel-section {
        height: 80vh;
    }

    .carousel-caption {
        padding: 20px;
        width: 90%;
    }

        .carousel-caption h1 {
            font-size: 1.2rem;
        }
}

/* 🔹 CONTENEDOR */
.paquetes-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

/* 🔹 TARJETAS */
.paquete-card {
    background: rgba(20, 20, 20, 0.85);
    border-radius: 20px;
    width: 320px;
    padding: 40px 25px;
    border: 1px solid rgba(255,127,80,0.3);
    box-shadow: 0 0 20px rgba(138,43,226,0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .paquete-card::before {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: conic-gradient(from 180deg, #ff7f50, #8a2be2, #ff7f50);
        animation: rotateBorder 6s linear infinite;
        opacity: 0.15;
    }

@keyframes rotateBorder {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.paquete-card h3 {
    color: #ff7f50;
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.paquete-card p {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

.paquete-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 0 30px rgba(255,127,80,0.5);
}
/* 🔹 CONTENEDOR */
.paquetes-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

/* 🔹 TARJETAS */
.paquete-card {
    background: rgba(20, 20, 20, 0.85);
    border-radius: 20px;
    width: 320px;
    padding: 40px 25px;
    border: 1px solid rgba(255,127,80,0.3);
    box-shadow: 0 0 20px rgba(138,43,226,0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .paquete-card::before {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: conic-gradient(from 180deg, #ff7f50, #8a2be2, #ff7f50);
        animation: rotateBorder 6s linear infinite;
        opacity: 0.15;
    }

@keyframes rotateBorder {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.paquete-card h3 {
    color: #ff7f50;
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.paquete-card p {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

.paquete-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 0 30px rgba(255,127,80,0.5);
}

.pricing-section {
    text-align: center;
    color: #fff;
    padding: 80px 20px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
}

.titulo-seccion {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 60px;
    background: linear-gradient(90deg, #ff7f50, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-category {
    margin-bottom: 90px;
}

    .pricing-category h3 {
        color: #ff7f50;
        font-size: 2rem;
        margin-bottom: 40px;
    }

.pricing-table {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.pricing-card {
    background: rgba(20,20,20,0.85);
    border-radius: 20px;
    padding: 35px 25px;
    width: 320px;
    border: 1px solid rgba(255,127,80,0.3);
    box-shadow: 0 0 20px rgba(138,43,226,0.3);
    transition: 0.4s ease;
}

    .pricing-card:hover {
        transform: translateY(-10px) scale(1.05);
        box-shadow: 0 0 30px rgba(255,127,80,0.6);
    }

    .pricing-card h4 {
        font-size: 1.6rem;
        color: #ff7f50;
        margin-bottom: 10px;
    }

.price {
    font-size: 1.2rem;
    color: #8a2be2;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.5;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
    color: #ccc;
}

    .pricing-card ul li {
        margin-bottom: 10px;
        font-size: 0.95rem;
        position: relative;
        padding-left: 15px;
    }

        .pricing-card ul li::before {
            content: "•";
            color: #ff7f50;
            position: absolute;
            left: 0;
        }

.pricing-card button {
    background: linear-gradient(90deg, #ff7f50, #8a2be2);
    border: none;
    padding: 12px 30px;
    color: #fff;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s ease;
}

    .pricing-card button:hover {
        transform: scale(1.08);
        box-shadow: 0 0 25px rgba(255,127,80,0.6);
    }

.silver {
    border-color: #c0c0c0;
}

.golden {
    border-color: gold;
    box-shadow: 0 0 25px rgba(255,215,0,0.3);
}

.platinum {
    border-color: #b0e0e6;
    box-shadow: 0 0 25px rgba(138,43,226,0.4);
}

.paquetes-section {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    font-family: 'Poppins', sans-serif;
    border-top: 1px solid rgba(255,127,80,0.3);
}

.titulo-seccion {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 60px;
    background: linear-gradient(90deg, #ff7f50, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(255,127,80,0.6);
    animation: glowTitle 3s ease-in-out infinite alternate;
}

/* 🔹 CONTENEDOR */
.paquetes-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

/* 🔹 TARJETAS */
.paquete-card {
    background: rgba(20, 20, 20, 0.85);
    border-radius: 20px;
    width: 320px;
    padding: 40px 25px;
    border: 1px solid rgba(255,127,80,0.3);
    box-shadow: 0 0 20px rgba(138,43,226,0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    /* Efecto visual sin bloquear clics */
    .paquete-card::before {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: conic-gradient(from 180deg, #ff7f50, #8a2be2, #ff7f50);
        animation: rotateBorder 6s linear infinite;
        opacity: 0.15;
        pointer-events: none;
        z-index: 0;
    }

    /* Asegura que el contenido quede encima */
    .paquete-card > * {
        position: relative;
        z-index: 2;
    }

    .paquete-card h3 {
        color: #ff7f50;
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .paquete-card p {
        color: #ccc;
        font-size: 1rem;
        margin-bottom: 30px;
        line-height: 1.5;
    }

    .paquete-card:hover {
        transform: translateY(-10px) scale(1.05);
        box-shadow: 0 0 30px rgba(255,127,80,0.5);
    }

/* 🔹 BOTÓN NEÓN */
.btn-paquete {
    background: linear-gradient(90deg, #ff7f50, #8a2be2);
    color: #fff;
    border: none;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255,127,80,0.5);
    text-decoration: none;
    display: inline-block;
}

    .btn-paquete:hover {
        background: linear-gradient(90deg, #8a2be2, #ff7f50);
        transform: scale(1.08);
        box-shadow: 0 0 25px rgba(255,127,80,0.8);
    }