/**
* Template Name: Strive
* Template URL: https://bootstrapmade.com/strive-bootstrap-business-template/
* Updated: Sep 20 2025 with Bootstrap v5.3.8
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --color-primary: #9C1BFF;
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #282828; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #00E59C; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #5b5b5b; /* The default color of the main navmenu links */
    --nav-hover-color: #00E59C; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #00E59C; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
.light-background {
    --background-color: #f5f2ef;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: 'Montserrat', sans-serif;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-primary);
    font-family: 'Poppins', sans-serif;
}

/* ==== Top Bar ==== */
.top-bar {
    background: var(--color-primary);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
}

.top-bar a:hover {
    text-decoration: underline;
}

.top-bar .social-links a {
    color: #fff;
    font-size: 16px;
    margin-left: 12px;
    transition: 0.3s;
}

.top-bar .social-links a:hover {
    color: #e2e2e2;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header .main-header {
    color: #000000;
    background-color: white;
    padding: 30px 0;
    transition: all 0.5s;
    z-index: 997;
}

.header .main-header .logo {
    line-height: 1;
}

.header .main-header .logo img {
    max-height: 36px;
    margin-right: 8px;
}

.header .main-header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 500;
    color: var(--heading-color);
}

.header .main-header .btn-whatsapp {
    border: 2px solid #25D366;
    color: #25D366;
    font-weight: bold;
    border-radius: 50px;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.header .main-header .btn-whatsapp:hover {
    background-color: #25D366;
    color: #fff;
}

.header .main-header .top-bar {
    background-color: var(--color-primary);
    font-size: 14px;
}

@media (max-width: 1200px) {
    .header .main-header .logo {
        order: 1;
    }

    .header .main-header .logo h1 {
        font-size: 24px;
    }

    .header .main-header .cta-btn {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 20px;
    }

    .header .main-header .navmenu {
        order: 3;
    }
}

@media (max-width: 768px) {
    .header .main-header .logo img {
        max-height: 28px;
    }

    .header .main-header .btn-whatsapp {
        font-size: 14px;
        padding: 6px 12px;
        border-width: 1.5px;
    }

    .header .main-header .btn-whatsapp {
        gap: 4px;
    }

    .header .main-header .btn-whatsapp {
        flex: 1;
        justify-content: center;
        margin-left: 10px;
    }
}

@media (max-width: 480px) {
    .header .main-header {
        padding: 15px 0;
    }

    .header .main-header .logo img {
        max-height: 24px;
    }

    .header .main-header .btn-whatsapp {
        font-size: 12px;
        padding: 5px 10px;
    }
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
    --background-color: #5b5b5b;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --nav-color: #9C27FF;
}

/* Index Page Header
------------------------------*/
.index-page .header {
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --nav-color: #9C27FF;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
    --background-color: #5b5b5b;
    --nav-color: #9C27FF;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu > ul > li {
        white-space: nowrap;
        padding: 15px 14px;
    }

    .navmenu > ul > li:last-child {
        padding-right: 0;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--color-primary);
        font-size: 15px;
        padding: 0 2px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
        font-weight: 500;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu > ul > li > a:before {
        content: "";
        position: absolute;
        height: 2px;
        bottom: -27px;
        left: 0;
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }

    .navmenu a:hover:before,
    .navmenu li:hover > a:before,
    .navmenu .active:before {
        visibility: visible;
        width: 100%;
    }

    .navmenu li:hover > a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--accent-color);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover > a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown > .dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu > ul {
        display: block;
    }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    background-color: #212529;
    color: #fff;
    padding: 120px 0 20px;
    font-family: 'Montserrat', sans-serif;
}

.footer h5 {
    color: #fff;
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.footer ul li {
    margin-bottom: 8px;
}

.footer ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: #fff;
}

.footer .footer-logo {
    max-height: 50px;
    width: auto;
}

.footer .footer-chat {
    max-height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.footer .footer-chat:hover {
    transform: scale(1.05);
}

.footer .copyright {
    font-size: 1.0rem;
    text-align: center;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.footer .chat-container {
    max-height: 50px;
}

input[type=text],
input[type=email],
textarea {
    color: white !important;
    background-color: var(--color-primary) !important;
    border-color: white !important;
}

input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
    border-color: var(--accent-color) !important;
}

input[type=text]::placeholder,
input[type=email]::placeholder,
textarea::placeholder {
    color: white !important;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background-color: var(--background-color);
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid var(--accent-color);
    border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 72px;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 57px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    position: relative;
}

.section-title h2 {
    font-size: 36px;
    font-weight: bold;
    padding: 10px 10px 0 10px;
}

.section-title p {
    color: var(--color-primary);
    font-size: 25px;
    font-weight: normal;
    font-family: 'Montserrat', sans-serif;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero .carousel {
    inset: 0;
    position: absolute;
    overflow: hidden;
}

.hero .carousel-item {
    position: relative; /* Cambiar de absolute a relative */
    height: 100vh; /* O la altura que necesites */
    overflow: hidden;
    transition-duration: 0.4s;
}

.hero .carousel-item.active {
    position: relative;
}

.hero .carousel-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero .carousel-item::before {
    content: "";
    background: rgba(0, 0, 0, 0.2);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero .carousel-control-prev {
    justify-content: start;
}

@media (min-width: 640px) {
    .hero .carousel-control-prev {
        padding-left: 15px;
    }
}

.hero .carousel-control-next {
    justify-content: end;
}

@media (min-width: 640px) {
    .hero .carousel-control-next {
        padding-right: 15px;
    }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
    background: none;
    font-size: 26px;
    line-height: 0;
    background: color-mix(in srgb, var(--default-color), transparent 80%);
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    border-radius: 50px;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
    z-index: 3;
    transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
    opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
    opacity: 0.9;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
    padding: 40px 0 30px 0;
}

/* Plans */

.plans {
    background-image: url("/static/img/plan/fondo.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.plans .container {
    position: relative;
    z-index: 1;
}

.plans .card-plan {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.plans .card-plan img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    padding: 20px;
}

.plans .btn-hire-now {
    background: linear-gradient(to right, #4ade80, #14b8a6);
    border: none;
    color: white;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 229, 156, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plans .btn-hire-now:hover {
    background: linear-gradient(135deg, #00b377, #009966);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 229, 156, 0.4);
}

.plans .btn-hire-now:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 229, 156, 0.3);
}

.plans .carousel-item {
    transition: transform 0.6s ease-in-out;
}

.plans .carousel-control-prev,
.plans .carousel-control-next {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.plans .carousel-control-prev {
    left: -20px;
}

.plans .carousel-control-next {
    right: -20px;
}

.plans .title-plan {
    text-align: center;
    padding: 20px;
    font-weight: bold;
    font-size: 40px;
    color: white;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
    position: relative;
}

.services .section-title h2 {
    font-size: 50px !important;
}

.services .card-services {
    background-color: #f5f2ef;
    padding: 20px;
    border-radius: 25px;
}

.services .services-content {
    border: 2px solid var(--accent-color);
    text-align: center;
    padding: 10px;
    font-size: 25px;
    color: var(--color-primary);
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-image: url("/static/img/call-to-action/fondo.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white !important;
}

.call-to-action .title {
    font-size: 40px;
    font-weight: bold;
    color: white !important;
}

.call-to-action .description {
    font-size: 25px;
}

.call-to-action .whatsapp-btn {
    background: linear-gradient(45deg, #25D366, #128C7E);
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 20px;
}

.call-to-action .whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
    position: relative;
    overflow: hidden;
    background-image: url("/static/img/features/fondo.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.features .title-info {
    font-size: 44px;
    text-align: center;
}

.features .description-info {
    font-size: 20px;
    color: var(--color-primary);
    font-weight: 500;
    line-height: 1.2;
}

.features .img-benefit {
    width: 50%;
}

.features .feature-card {
    background: white;
    border-radius: 25px;
    height: 100%;
    text-align: center;
    border: 2px solid var(--color-primary);
    padding: 1.2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.features .feature-card:hover {
    transform: translateY(-5px);
}

.features .feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 10px;
    border-radius: 50%;
    color: var(--color-primary);
    font-size: 28px;
}

.features .feature-icon i {
    font-size: 50px;
}

.features .feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--color-primary);
}

.features .feature-description {
    color: var(--color-primary);
    line-height: 1.6;
}

@media (max-width: 767.98px) {
    .img-benefit {
        margin-top: 20px;
    }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-image: url("/static/img/contact/fondo.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact .contact-card {
    padding: 30px 60px;
    border-radius: 25px;
    color: white;
    background-color: #8929d3;
}

.contact .contact-card h3 {
    color: white !important;
    font-size: 35px;
}

.contact .form-label {
    font-weight: bold;
}

