/* Colores de la paleta: */
/* Amarillo: #FFC90E (usado para el fondo principal, cajas y botones) */
/* Verde: #57C93C (usado para el botón principal) */
/* Naranja: #F44336 (usado para el logo y elementos del navbar) */
/* Negro: #000000 */

/* ------------------------------------- */
/* Estilos Globales y Tipografía */
/* ------------------------------------- */
body {
    font-family: Arial, sans-serif; /* Se utiliza una fuente genérica similar a la del diseño */
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700; /* Asegurar negritas para los títulos */
    line-height: 1.1;
}

/* ------------------------------------- */
/* Navbar Personalizado */
/* ------------------------------------- */
.navbar-custom {
    background-color: transparent; /* Fondo transparente */
    border: none;
    margin-bottom: 0;
    min-height: 70px; /* Altura para el logo */
}

.navbar-brand {
    padding: 15px 0; /* Ajustar padding si es necesario */
}

.logo-text {
    font-weight: 900;
    font-size: 24px;
    color: #F44336; /* Color Naranja */
    border: 3px solid #F44336;
    padding: 2px 5px;
}

.navbar-default .navbar-nav > li > a {
    color: #000;
    font-weight: 700;
}

/* ------------------------------------- */
/* Sección Principal (Hero) */
/* ------------------------------------- */
.hero-section {
    padding-top: 50px;
    padding-bottom: 50px;
}

.hero-text {
    margin-top: 50px;
}

.titulo-principal {
    font-size: 4rem; /* Tamaño de fuente relativo para el título */
    color: #000;
    margin-top: 0;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-success-custom {
    background-color: #57C93C; /* Verde */
    border-color: #57C93C;
    color: #fff;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 50px; /* Botón redondeado */
    font-size: 18px;
    white-space: normal; /* Permitir salto de línea en el CTA inferior */
}

.btn-success-custom:hover,
.btn-success-custom:focus {
    background-color: #4AA033; /* Verde más oscuro al pasar el mouse */
    border-color: #4AA033;
    color: #fff;
}

.hero-image-container {
    padding: 0;
    text-align: right;
}

.hero-image {
    max-height: 450px; /* Altura máxima para la imagen, ajusta si es necesario */
    width: auto;
}

.yellow-box{
    border-radius: 20px 20px 0 0;
    margin-top: -20px;
    padding-bottom: 40px !important;
}

/* ------------------------------------- */
/* Sección de Beneficios */
/* ------------------------------------- */
.benefits-section {
    padding: 40px 0;
}

.benefit-box {
    min-height: 152px;
    padding: 20px;
    font-weight: 700;
    font-size: 16px;
}

.black-box {
    background-color: #000;
    color: #fff;
}

.yellow-box {
    background-color: #FFC90E; /* Amarillo */
    color: #000;
}

.benefit-box p {
    margin: 0;
    line-height: 1.3;
    width: 100%;
    text-align: center;
}

.benefit-box img{
    max-width: 75px;

}
/* ------------------------------------- */
/* Sección Círculo de Proceso */
/* ------------------------------------- */
.process-section {
    padding: 50px 0;
    text-align: center;
    position: relative;
    margin-top: 3rem;
}

.process-section span {
    font-size: 30px;
    margin-bottom: 40px;
    background-color: white;
    border: 1px solid red;
    background-color: white;
}

.process-circle {
    position: relative;
    width: 650px;
    height: 430px;
    border: 2px solid #000;
    border-radius: 50%;
    margin: 0 auto 50px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -69px;
}

.circle-content {
    text-align: center;
    padding: 20px;
}

.circle-main-text {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
}

/* Estilos para los textos alrededor del círculo (usando posicionamiento absoluto) */
.step-sold, .step-delivered, .step-paid {
    position: absolute;
    background-color: white;
    font-weight: bold;
    font-size: 1rem;
}

.step-sold {
    top: 50%;
    left: -50px; /* Ajustar posición */
    transform: translateY(-50%);
}

.step-delivered {
    bottom: -30px; /* Ajustar posición */
    left: 50%;
    transform: translateX(-50%);
}

.step-close {
    top: -30px;
    left: 43%;
    /* transform: translateX(50%); */
    width: auto;
    max-width: 200px;
    position: absolute;
    background: white;
    float: left;
    z-index: 100;
    font-weight: bold;
    font-size: 1.3rem;
}

.step-paid {
    top: 50%;
    right: -50px; /* Ajustar posición */
    transform: translateY(-50%);
}

.maximiza-ingresos {
    font-size: 30px;
    margin-top: 50px;
    margin-bottom: 50px;
}

/* ------------------------------------- */
/* Sección de Llamada a la Acción Final (CTA) */
/* ------------------------------------- */
.cta-section {
    padding: 0;
    margin-bottom: 0;
}

.cta-background {
    /*background-color: #FFC90E; /* Amarillo */*/
    position: relative;
    /*padding: 50px 0;*/
    overflow: hidden; /* Para que la imagen no se salga */
}

.cta-image {
    /* Estilos para posicionar al hombre sentado con el celular, ajusta si es necesario */
    /*max-height: 350px;*/
    width: 100%;
    display: block;
    margin: 0 auto;
}

.cta-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    line-height: 1.1;
    font-size: 24px;
}

/* ------------------------------------- */
/* Footer */
/* ------------------------------------- */
.footer-custom {
    padding: 15px 0;
    background-color: #f8f8f8;
    color: #888;
}

/* Media Queries para Responsiveness (ajustes Bootstrap 3) */
@media (max-width: 991px) { /* Tablets y móviles */
    .titulo-principal {
        font-size: 4rem;
        text-align: center;
    }
    .hero-text {
        text-align: center;
    }
    .hero-image-container {
        text-align: center;
        margin-top: 30px;
    }
    .hero-image {
        max-height: 300px;
    }
    .benefits-section .col-xs-3 {
        width: 50%; /* Dos cajas por fila en móvil */
        margin-bottom: 10px;
    }
    .process-circle {
        width: 300px;
        height: 300px;
    }
    .step-sold, .step-paid {
        position: static;
        display: block;
        margin: 10px 0;
        transform: none;
    }
    .step-delivered {
        position: static;
        display: block;
        margin: 10px 0;
        transform: none;
    }
    .process-circle {
        border: none;
        height: auto;
        width: 100%;
    }
    .circle-content {
        border: 2px solid #000;
        border-radius: 50%;
        width: 200px;
        height: 200px;
        margin: 20px auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .cta-button {
        font-size: 18px;
        padding: 10px 20px;
    }
}

@media (max-width: 767px) { /* Móviles pequeños */
    .benefits-section .col-xs-3 {
        width: 100%; /* Una caja por fila en móviles muy pequeños */
    }
    .navbar-brand .logo-text {
        font-size: 18px;
    }
    .navbar-collapse {
        border-top: 1px solid #e7e7e7;
    }

    .yellow-box{
        border-radius: 20px 20px 0 0;
        margin-top: 0;
        padding-bottom: 40px !important;
    }

    .titulo-principal{font-size: 2rem}

    .process-section{padding-top: 0;margin-top: 1rem}
    .benefits-section{padding-bottom: 0}
}


.benefit-ini{border-radius: 20px 0 0 0; }
.benefit-end{border-radius: 0 20px  0 0; }

.pt0{padding-top: 0 !important}