/* Generales */

body {
    font-family: sans-serif;

}

/* titulos */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2D3E4E;
    margin-bottom: 0.5rem;
}

.title-underline {
    width: 60px;
    height: 3px;
    background-color: #52C9AB;
    margin: 0 auto;
}


/* Navbar */
.logo-icon {
    font-size: 1.8rem;
    margin-right: 0.5rem;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2D3E4E;
}

.nav-link {
    color: #2D3E4E;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #4A9B8E;
}

.btn-outline-primary {
    color: #4A9B8E;
    border-color: #4A9B8E;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-outline-primary:hover {
    background-color: #4A9B8E;
    border-color: #4A9B8E;
    color: white;
}

/* Hero */
.hero {
    padding: 3rem 0;
}

.hero h1 {
    color: #2D3E4E;

}

.hero .lead {
    color: #6C757D;
    font-size: 1.1rem;
}

.hero img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Botón */
.btn-primary {
    background-color: #4A9B8E;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}


.btn-primary:hover {
    background-color: #3d8474;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 155, 142, 0.3);
}

/* Beneficios */
.beneficios {
    background-color: white;
}

.benefit-card {
    padding: 2rem 1.5rem;
    transition: transform 0.3s;
}

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

.benefit-icon-image {
    width: 120px;
    height: 120px;
    display: block;
    margin: 0 auto;
}

.benefit-card h3 {
    color: #2D3E4E;
    font-weight: 600;
}

/* Problema */
.problema-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.problema-number {
    background-color: #F8F9FA;
    color: #6C757D;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.problema-item p {
    margin: 0;
    color: #2D3E4E;
}



/* Proceso */

.proceso-step {
    transition: transform 0.3s;
}

.proceso-step:hover {
    transform: scale(1.05);
}

.proceso-image-wrapper {
    position: relative;
    display: inline-block;
}

.proceso-icon {
    width: 100px;
    height: 100px;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
}

.step-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background-color: #2D3E4E;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    border: 3px solid white;
}

.proceso-step h4 {
    color: #2D3E4E;
    font-weight: 600;
}


/* Testimonios */
.testimonio-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.testimonio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.quote-icon {
    font-size: 3rem;
    color: #52C9AB;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonio-card p {
    color: #6C757D;
}

.testimonio-card .fw-bold {
    color: #2D3E4E;
}

/* Guía Gratuita */
.guia-gratuita {
    background-color: white;
}

.guia-icon-wrapper {
    background: linear-gradient(135deg, #E8F5F3 0%, #D4EDE8 100%);
    padding: 3rem;
    border-radius: 20px;
}

.guia-pdf-image {
    width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.checklist {
    list-style: none;
    padding: 0;
}

.checklist li {
    padding: 0.5rem 0;
    color: #2D3E4E;
    font-size: 1.05rem;
}

/* Guía completa */


.precio-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.checklist-complete {
    list-style: none;
    padding: 0;
}

.checklist-complete li {
    padding: 0.6rem 0;
    color: #2D3E4E;
    border-bottom: 1px solid #E0E0E0;
}

.checklist-complete li:last-child {
    border-bottom: none;
}

.precio {
    padding: 1rem 0;
}