/* Estilos generales */
h1 {
    font-family: "Lato", sans-serif !important;
    font-weight: 300;
    font-style: normal;
}

body {
    margin: 0;
    color: #333;
    background-color: #f8f8f8;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    background-color: #ffffff;
}

.hero img {
    max-width: 100%;
    height: auto;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.hero h1 {
    font-size: 2em;
    margin-bottom: 10px;
    color: #007bff;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.hero button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero button:hover {
    background-color: #0056b3;
}

@media (min-width: 768px) {
    .hero {
        flex-direction: row;
        text-align: left;
    }

    .hero-content {
        max-width: 50%;
        padding: 20px;
    }

    .hero img {
        max-width: 45%;
    }
}

/* Features Section */
.features {
    background-color: #f4f4f4;
    padding: 60px 20px;
    text-align: center;
}

.features h2 {
    font-size: 2em;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.feature h3 {
    color: #007bff;
    margin-bottom: 10px;
}

.feature p {
    font-size: 1em;
}

.lead-capture {
    display: flex;
    flex-wrap: wrap;
    background: linear-gradient(90deg, #007bff 0%, #0056b3 100%);
    color: #fff;
    padding: 60px 20px;
    align-items: center;
    justify-content: center;

    .check-icon {
        fill: #fff;
        /* color blanco */
    }
}

.lead-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    margin: 20px;
}

.lead-content h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.lead-content h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.lead-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.lead-content ul {
    list-style: none;
    padding: 0;
}

.lead-content ul li {
    margin-bottom: 10px;
    font-size: 1em;
}

.lead-form {
    background: #fff;
    color: #333;
    padding: 30px;
    border-radius: 10px;
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    margin: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.lead-form form {
    display: flex;
    flex-direction: column;
}

.lead-form label {
    margin-top: 10px;
    font-weight: bold;
}

.lead-form input,
.lead-form select {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.lead-form button {
    margin-top: 20px;
    padding: 15px;
    background-color: #007bff;
    border: none;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

.lead-form button:hover {
    background-color: #0056b3;
}

.pricing {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.pricing h2 {
    font-size: 2em;
    margin-bottom: 40px;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.pricing-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex: 1;
    max-width: 300px;
}

.pricing-header {
    background-color: #00aaff;
    color: #fff;
    padding: 20px;
}

.pricing-header h3 {
    margin: 0;
    font-size: 1.1em;
}

.pricing-header .price {
    font-size: 2em;
    margin: 10px 0 0;
}

.pricing-header .price span {
    display: block;
    font-size: 0.8em;
}

.pricing-card ul {
    list-style: none;
    padding: 20px;
    margin: 0;
    text-align: left;
}

.pricing-card ul li {
    margin-bottom: 10px;
}

.pricing-card button {
    background-color: #00aaff;
    color: #fff;
    border: none;
    margin: 20px;
    padding: 15px;
    border-radius: 5px;
    cursor: pointer;
}

.pricing-card button:hover {
    background-color: #0077cc;
}

.feature i {
    color: #007bff;
    margin-bottom: 10px;
}

.check-icon {
    width: 16px;
    height: 16px;
    fill: #007bff;
    margin-right: 6px;
    vertical-align: middle;
}

.feature ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    text-align: left;
}

.feature ul li {
    margin-bottom: 5px;
}

.navbar {
    background-color: #007bff;
    /* azul Monkey App */
}

.navbar .nav-link {
    color: #fff !important;
}

.navbar .nav-link:hover {
    color: #f0f0f0 !important;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    background-color: #212529;
}

.btn-monkey {
    background-color: #F7941D;
    color: white;
}

.btn-monkey:hover {
    background-color: #e08316;
    color: white;
}

.carousel-caption {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 20px;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Lato", sans-serif !important;
    font-weight: 300;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
}

.navbar-brand {
    font-weight: 700;
}

button {
    font-weight: 700;
}

.payment-info {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.payment-info h3,
.payment-info h4 {
    font-weight: 400;
    margin-bottom: 20px;
}

.payment-info .highlight {
    color: #007bff;
    font-weight: 700;
}

.payment-info hr {
    width: 50px;
    border-top: 2px solid #ddd;
    margin: 20px auto;
}

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    align-items: center;
    margin-top: 20px;
}

.payment-logos img {
    max-height: 40px;
    object-fit: contain;
}

.lead-capture {
    background: linear-gradient(rgba(0, 123, 255, 0.7), rgba(0, 123, 255, 0.7)),
        url("../img/logo_arriba.png") no-repeat center center;
    background-size: cover;
    color: #fff;
}