* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0b0b0c;
    --bg-soft: #111214;
    --card: #17181b;
    --card-2: #1d1f23;
    --text: #ffffff;
    --muted: #b8bcc6;
    --accent: #ff2d2d;
    --accent-2: #d81f26;
    --border: rgba(255, 255, 255, .08);
    --shadow: 0 18px 45px rgba(0, 0, 0, .35);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.7;
}

img,
video {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    transition: .3s ease;
}

/*================ NAVBAR ================*/

.navbar {
    padding: 18px 0;
    transition: .35s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(11, 11, 12, .85);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

.navbar-brand {
    font-size: 1.9rem;
    font-weight: 800;
    color: #fff !important;
    letter-spacing: .5px;
}

.navbar-brand span {
    color: var(--accent);
}

.nav-link {
    color: #f2f2f2 !important;
    margin-left: 18px;
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: -4px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: .3s ease;
}

.nav-link:hover {
    color: #fff !important;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.navbar-toggler {
    border: none;
    color: #fff;
    font-size: 2rem;
    box-shadow: none !important;
}

/*================ BOTONES ================*/

.btn {
    border-radius: 999px;
    padding: 14px 30px;
    font-weight: 600;
    transition: .3s ease;
}

.btn-danger {
    background: var(--accent);
    border: none;
}

.btn-danger:hover {
    background: var(--accent-2);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(255, 45, 45, .28);
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, .18);
}

.btn-outline-light:hover


/*=======HERO================*/ .hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .65);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    color: #ff2d2d;
    letter-spacing: 2px;
    font-weight: 600;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin: 25px 0;
}

.hero p {
    max-width: 650px;
    color: #d8d8d8;
    font-size: 1.15rem;
    line-height: 1.8;
}

.hero-buttons {
    margin-top: 40px;
}

.hero-buttons .btn {
    padding: 15px 35px;
    border-radius: 50px;
    margin-right: 15px;
    font-weight: 600;
}

/*================ RESPONSIVE ================*/

@media(max-width:992px) {

    .hero h1 {

        font-size: 3rem;

    }

    .hero {

        text-align: center;

    }

    .hero-buttons .btn {

        display: block;

        margin-bottom: 15px;

    }

}

/*================ SECCIONES ================*/

section {
    padding: 110px 0;
    position: relative;
}

.section-subtitle {
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: .9rem;
}

section h2 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 800;
    margin: 18px 0;
    line-height: 1.1;
}

.section-text {
    max-width: 760px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 1.05rem;
}

/*================ SOBRE MÍ ================*/

.about {
    background: linear-gradient(180deg, var(--bg-soft) 0%, #0d0e10 100%);
}

.about-image {
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
}

.about-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .22), rgba(0, 0, 0, 0));
}

.about-image img {
    width: 100%;
    transition: transform .7s ease;
}

.about-image:hover img {
    transform: scale(1.06);
}

.about p {
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 18px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.about-features div {
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--border);
    padding: 18px 20px;
    border-radius: 18px;
    transition: .3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-features div:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 45, 45, .45);
    box-shadow: 0 14px 32px rgba(0, 0, 0, .28);
}

.about-features i {
    color: var(--accent);
    font-size: 1.15rem;
}

/*================ ESTADÍSTICAS ================*/

.stats {
    background: var(--bg);
}

.stat-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .02));
    border: 1px solid var(--border);
    padding: 42px 22px;
    border-radius: 24px;
    transition: .35s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 45, 45, .45);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .28);
}

.stat-card i {
    font-size: 2.4rem;
    color: var(--accent);
    margin-bottom: 18px;
}

.stat-card h2 {
    font-size: 3rem;
    font-weight: 800;
    margin: 0 0 8px;
}

.stat-card p {
    color: var(--muted);
    margin: 0;
}

/*================ OBJETIVOS ================*/

.goals {
    background: linear-gradient(180deg, #0d0e10 0%, var(--bg-soft) 100%);
}

.goal-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .02));
    border: 1px solid var(--border);
    padding: 38px 30px;
    border-radius: 24px;
    transition: .35s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.goal-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: .35s ease;
}

.goal-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 45, 45, .45);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .28);
}

.goal-card:hover::before {
    transform: scaleX(1);
}

.goal-card i {
    font-size: 2.6rem;
    color: var(--accent);
    margin-bottom: 18px;
}

.goal-card h4 {
    margin: 8px 0 12px;
    font-weight: 700;
    font-size: 1.25rem;
}

.goal-card p {
    color: var(--muted);
    line-height: 1.8;
    margin: 0;
}

/*================ SERVICIOS ================*/

.services {
    background: var(--bg);
}

.service-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .02));
    border: 1px solid var(--border);
    padding: 34px 28px;
    border-radius: 24px;
    text-align: center;
    transition: .35s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 45, 45, .12), transparent 45%);
    opacity: 0;
    transition: .35s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 45, 45, .45);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .28);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card i {
    font-size: 2.9rem;
    color: var(--accent);
    margin-bottom: 18px;
}

.service-card h4 {
    font-size: 1.22rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-card p {
    color: var(--muted);
    line-height: 1.8;
    margin: 0;
}

/*================ RESPONSIVE ================*/

@media(max-width:992px) {


    section {
        padding: 90px 0;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    section h2 {
        font-size: 2.4rem;
    }

    .stat-card {
        margin-bottom: 24px;
    }


}


/*================ PLANES ================*/

.pricing {
    background: #111;
}

.price-card {
    background: #181818;
    border-radius: 20px;
    padding: 45px 35px;
    position: relative;
    transition: .35s;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, .08);
}

.price-card:hover {
    transform: translateY(-12px);
}

.featured {
    border: 2px solid #ff2d2d;
    transform: scale(1.03);
}

.badge-plan {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff2d2d;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: .8rem;
    font-weight: 600;
}

.price-card h5 {
    text-transform: uppercase;
    color: #bdbdbd;
}

.price-card h2 {
    font-size: 3rem;
    margin: 20px 0;
}

.price-card span {
    font-size: 1rem;
    color: #aaa;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 35px 0;
}

.price-card li {
    margin: 15px 0;
}

.price-card i {
    color: #ff2d2d;
    margin-right: 10px;
}

/*================ GALERÍA ================*/

.gallery {
    background: #0d0d0d;
}

.gallery-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    transition: .4s;
    display: block;
}

.gallery-img:hover {
    transform: scale(1.05);
}

.gallery-img:hover {
    transform: scale(1.05);
}

/*================ TESTIMONIOS ================*/

.testimonials {
    background: #111;
}

.testimonial-card {
    background: #181818;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    transition: .3s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-card p {
    color: #bdbdbd;
    margin: 20px 0;
}

/*================ CTA ================*/

.cta {
    background: linear-gradient(135deg, #ff2d2d, #b31217);
    padding: 120px 0;
}

.cta h2 {
    font-size: 3rem;
    font-weight: 700;
}

.cta p {
    font-size: 1.2rem;
    margin: 25px auto 40px;
    max-width: 700px;
}

.counter-section {

    background: #181818;
    padding: 80px 0;

}


.counter {

    font-size: 4rem;
    font-weight: 800;
    color: #ff2d2d;

}


.counter-section p {

    color: #bbb;

}

.contact {

    background: #111;

}


.contact-form {

    max-width: 700px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;

}


.contact-form input,
.contact-form textarea,
.contact-form select {


    background: #181818;

    border: none;

    padding: 18px;

    border-radius: 15px;

    color: white;

    outline: none;

}


.contact-form input:focus,
.contact-form textarea:focus {

    border: 1px solid #ff2d2d;

}

footer {

    background: #080808;

    padding: 70px 0 30px;

}



footer h3 {

    font-size: 2rem;

    font-weight: 800;

}



footer h3 span {

    color: #ff2d2d;

}



footer p {

    color: #aaa;

}



footer a {

    display: block;

    color: #aaa;

    text-decoration: none;

    margin: 10px 0;

}



footer a:hover {

    color: #ff2d2d;

}



.social {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    align-items: center;
    margin-top: 12px;
}

.social a {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #141518;
    border: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: .3s ease;
}

.social a:hover {
    background: #ff2d2d;
    border-color: #ff2d2d;
    transform: translateY(-3px);
}

.social i {
    font-size: 1.5rem;
}



.copyright {

    text-align: center;

    margin-top: 30px;

}

.whatsapp {

    position: fixed;

    bottom: 25px;

    right: 25px;

    width: 60px;

    height: 60px;

    background: #25d366;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    font-size: 2rem;

    z-index: 1000;

    transition: .3s;

}



.whatsapp:hover {

    transform: scale(1.1);

}

/*================ PARTNERS ================*/

.partners {
    background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
}

.partner-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .02));
    border: 1px solid var(--border);
    padding: 42px 36px;
    border-radius: 28px;
    text-align: center;
    height: 100%;
    transition: .35s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
}

.partner-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 45, 45, .45);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .28);
}

.partner-card img {
    max-width: 220px;
    max-height: 90px;
    object-fit: contain;
    margin: 0 auto 24px;
    filter: brightness(1.05);
}

.partner-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.partner-card p {
    color: var(--muted);
    line-height: 1.8;
    margin: 0;
}

/*================ GALERÍA ================*/

.gallery {
    background: var(--bg);
}

.gallery .row {
    row-gap: 28px;
}

.gallery-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 24px;
    transition: .45s ease;
    border: 1px solid var(--border);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .22);
}

.gallery-img:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(255, 45, 45, .35);
    box-shadow: 0 22px 48px rgba(0, 0, 0, .32);
}

/*================ TESTIMONIOS ================*/

.testimonials {
    background: linear-gradient(180deg, var(--bg-soft) 0%, #0d0e10 100%);
}

.testimonial-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .02));
    border: 1px solid var(--border);
    padding: 34px 30px;
    border-radius: 24px;
    transition: .35s ease;
    height: 100%;
    text-align: left;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 45, 45, .45);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .28);
}

.testimonial-stars {
    color: var(--accent);
    margin-bottom: 16px;
    display: flex;
    gap: 6px;
}

.testimonial-card p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 18px;
}

.testimonial-card h5 {
    margin: 0;
    font-weight: 700;
}

.testimonial-card span {
    color: #8f95a1;
    font-size: .95rem;
}

/*================ CTA ================*/

.cta {
    background: radial-gradient(circle at top, rgba(255, 45, 45, .28), transparent 55%),
        linear-gradient(135deg, #17181b, #0f1012);
    padding: 120px 0;
}

.cta h2 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta p {
    color: #d8dbe3;
    font-size: 1.1rem;
    max-width: 720px;
    margin: 0 auto 36px;
}

.cta .btn-light {
    color: #111;
    font-weight: 700;
}

/*================ CONTACTO ================*/

.contact {
    background: var(--bg);
}

.contact-form {
    max-width: 760px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    background: #141518;
    border: 1px solid var(--border);
    padding: 18px 20px;
    border-radius: 18px;
    color: #fff;
    outline: none;
    transition: .3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #8f95a1;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: rgba(255, 45, 45, .55);
    box-shadow: 0 0 0 4px rgba(255, 45, 45, .12);
}

.contact-info {
    margin-top: 42px;
}

.contact-info p {
    color: var(--muted);
    margin: 10px 0;
}

.contact-info a {
    color: #fff;
}

.contact-info a:hover {
    color: var(--accent);
}

.contact-info i {
    color: var(--accent);
    margin-right: 10px;
}

/*================ FOOTER ================*/

footer {
    background: #08090a;
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding: 80px 0 30px;
}

footer h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

footer h3 span {
    color: var(--accent);
}

footer h5 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

footer p {
    color: #9aa0ab;
    line-height: 1.8;
}

footer a {
    color: #c6cad2;
    display: block;
    margin: 10px 0;
}

footer a:hover {
    color: var(--accent);
}

.social {
    display: flex;
    gap: 14px;
    align-items: center;
}

.social a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #141518;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.social i {
    font-size: 1.3rem;
}

footer hr {
    border-color: rgba(255, 255, 255, .08);
    margin: 40px 0 24px;
}

.copyright {
    text-align: center;
    color: #7f8692;
    margin: 0;
    font-size: .95rem;
}

/*================ WHATSAPP ================*/

.whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    box-shadow: 0 16px 32px rgba(37, 211, 102, .35);
    z-index: 1000;
    transition: .3s ease;
}

.whatsapp:hover {
    transform: translateY(-3px) scale(1.06);
    color: #fff;
}

@media(max-width:768px) {

    .gallery-img {
        height: 300px;
    }

    .cta {
        padding: 90px 0;
    }

    footer {
        text-align: center;
    }

    .social {
        justify-content: center;
    }


}

/*================ JS EFFECTS ================*/

.nav-link.active {
    color: var(--accent) !important;
}

.nav-link.active::after {
    transform: scaleX(1);
}

.hidden-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all .8s ease;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

.btn-danger {
    position: relative;
    overflow: hidden;
}

.btn-danger::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 255, 255, .22), transparent 60%);
    top: var(--y);
    left: var(--x);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity .3s ease;
}

.btn-danger:hover::before {
    opacity: 1;
}

.gallery video {
    transition: transform .45s ease, box-shadow .45s ease;
}

.gallery video:hover {
    transform: scale(1.03);
    box-shadow: 0 22px 48px rgba(0, 0, 0, .35);
}

.form-message{
    margin-top:15px;
    font-weight:600;
    display:none;
}

.form-message.success{
    display:block;
    color:#4ade80;
}

.form-message.error{
    display:block;
    color:#ff6b6b;
}

/*================ SELECTOR DE IDIOMA ================*/

.language-select {
    background: #141518;
    color: #fff;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: .9rem;
    font-weight: 600;
    outline: none;
    cursor: pointer;
    transition: .3s ease;
    min-width: 72px;
}

.language-select:hover,
.language-select:focus {
    border-color: #ff2d2d;
    box-shadow: 0 0 0 3px rgba(255,45,45,.15);
}

.language-select option {
    background: #141518;
    color: #fff;
}

@media (max-width: 992px) {
    .language-select {
        width: 100%;
        margin: 10px 0;
    }
}