/* Custom variables */
:root {
    --primary-color: #C8DDEE;
    --text-dark: #183347;
    --text-light: #333;
    --background-light: #f5f5f5;
    --blue: #2483e2;
        --inter: Inter, sans-serif;
        --white: white;
        --gray-ii: #f6f5f4;
        --black: #121212;
        --gray: #fbfbfa;
        --black-2: black;
        --green: #daecda;
        --pink: #ffe2dd;
        --orange: #f9dec9;
        --color: #fdecc8;
        --light-blue: #c8ddee;
        --button-radius: 8px;
        --white-2: white;
        --borders: #c9cdd2;
        --violet: #e8ddee;
}

/* Base styles */
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-light);
    background-color: var(--background-light);
}

/* Navbar customization */
.navbar-brand {
    font-weight: regular;
    font-size: 1rem;
}

.navbar-brand img {
    margin-right: 0.5rem;
}

.nav-link {
    color: #1a1b1f;
    letter-spacing: .25px;
    margin-left: 5px;
    margin-right: 5px;
    padding: 5px 10px;
    font-size: 14px;
    line-height: 20px;
    text-decoration: none;
}

/* Hero section customization */
.hero {
    padding: 5rem 0;
}

/*.hero h1 {
    font-size: 2.125rem;
    line-height: 2.75rem;
}*/

.hero p {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.875rem;
}

/* Custom badge */
.badge.bg-primary {
    background-color: var(--primary-color) !important;
    color: var(--text-dark);
}

/* Custom button styles */
.btn-primary {
    background-color: #000;
    border-color: #000;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #333;
    border-color: #333;
}

.btn-primary img {
    margin-right: 0.5rem;
}

/* Client logos section */
.clients-wrapper img {
    max-height: 40px;
    width: auto;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .hero h1 {
        font-size: 1.75rem;
        line-height: 2.25rem;
    }

    .hero p {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .btn-primary {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
}

/* Add more custom styles as needed */

/* Add these styles to your existing CSS */

.feature-icon img {
    max-height: 60px;
    width: auto;
}

.feature-item {
    height: 100%;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    transition: transform 0.3s ease-in-out;
}

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

@media (max-width: 767.98px) {
    /* .display-4 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1.1rem;
    } */
}

/* Add or update these styles */
.display-4 {
    font-weight: 700;
    line-height: 1.2;
}

.display-5 {
    font-weight: 700;
    line-height: 1.2;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
}

.feature-text {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 400;
}

.badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.5em 1em;
}

/*Video*/

.custom-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background-color: #000;
}

.custom-video-wrapper iframe,
.custom-video-wrapper video {
    position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
    border-radius: 10px; /* Optional: if you want rounded corners */
}

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

.btn-lg img {
    max-height: 30px;
    width: auto;
}

@media (max-width: 767.98px) {
    .btn-lg {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
}

/* Pricing section styles */
#pricing {
    background-color: #fff;
}

#pricing .badge {
    font-size: 0.8rem;
    padding: 0.5em 1em;
    background-color: #ffeeba;
    color: #856404;
}

#pricing .display-4 {
    font-weight: 700;
}

.pricing-toggle-wrapper {
    margin-bottom: 2rem;
}

.pricing-toggle {
    background-color: #f8f9fa;
    border-radius: 30px;
    padding: 5px;
}

.btn-toggle {
    border: none;
    background: none;
    padding: 10px 20px;
    border-radius: 25px;
    color: #495057;
}

.btn-toggle.active {
    background-color: #000;
    color: #fff;
}

.pricing-card {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pricing-description {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.pricing-price .period {
    font-size: 1rem;
    font-weight: 400;
    color: #6c757d;
}

.pricing-features {
    list-style-type: none;
    padding-left: 0;
    margin-top: 1.5rem;
}

.pricing-features li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
}

.feature-highlight {
    color: #007bff;
}

.btn-dark {
    background-color: #000;
    border-color: #000;
}

.btn-dark:hover {
    background-color: #333;
    border-color: #333;
}

@media (max-width: 767.98px) {
    .pricing-card {
        margin-bottom: 1rem;
    }
}

/* FAQ Section Styles */
#faq {
    background-color: #f8f9fa;
}

#faq .badge {
    font-size: 0.8rem;
    padding: 0.5em 1em;
    background-color: #007bff;
    color: #fff;
}

#faq .display-4 {
    font-weight: 700;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
}

.accordion-button {
    background-color: #fff;
    color: #000;
    font-weight: 600;
    padding: 1.5rem;
    box-shadow: none;
    line-height: 1.4em;
}

.accordion-button:not(.collapsed) {
    background-color: #fff;
    color: #000;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.2s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.accordion-body {
    padding: 1rem 1.5rem 1.5rem;
}

.pnt-tag
{
        background-color: var(--green);
        color: #183347;
        border-radius: 3px;
        padding: 2px 6px;
        display: inline-block;
        font-size:12px;
}
.pnt-tag.blue {
    background-color: var(--light-blue);
}
.pnt-tag.colour-pink {
    background-color: var(--pink);
    color: #000;
}
.pnt-tag.orange {
    background-color: var(--orange);
    color: var(--black-2);
}
.pnt-tag.green {
    background-color: var(--green);
    color: var(--black-2);
}
.pnt-tag.yellow {
    background-color: var(--color);
}

footer {
    border-top: 1px solid #e5e5e5;
    background: white;
}

footer .btn-dark {
    border-radius: 20px;
    padding: 8px 16px;
}

.usersSection
{
background: #FBFBFA;
}

.footerLink
{
    color:#333;
    font-size:14px;
    text-decoration: none;

}
.footerLink:hover {
    color: #007bff;
    font-size: 14px;
    text-decoration: none;
}

.text-btn-header{
color: var(--white);
font-size: 14px;
}

/* Estilos personalizados para títulos */
h1, .h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: rgb(18, 18, 18);
    font-size: 50px;
    line-height: 64px;
}

/* Estilos responsivos */
@media (max-width: 1200px) {
    h1, .h1 {
        font-size: 45px;
        line-height: 58px;
    }
}

@media (max-width: 992px) {
    h1, .h1 {
        font-size: 350px;
        line-height: 52px;
    }
}

@media (max-width: 768px) {
    h1, .h1 {
        font-size: 35px;
        line-height: 46px;
    }
}

@media (max-width: 576px) {
    h1, .h1 {
        font-size: 30px;
        line-height: 40px;
    }
}

/* Estilos para otros niveles de títulos */
h2, .h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: rgb(18, 18, 18);
    font-size: 40px;
    line-height: 52px;
}

h3, .h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: rgb(18, 18, 18);
    font-size: 32px;
    line-height: 42px;
}

/* Ajusta los tamaños para h2 y h3 en diferentes breakpoints si es necesario */