/* ESTILOS GENERALES */
body {
    font-family: "Open Sans", sans-serif;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    color: #005096;
    margin-bottom: 30px;
    font-weight: 400;
    position: relative;
}

.section-title span {
    color: #8CBB27;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: #8CBB27;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 50px;
    font-weight: 300;
}

/* HERO SECTION */
.bdm-hero {
    height: 65vh;
    margin-top: 10px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px; 
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.bdm-logo {
    max-width: 350px;
    width: 100%;
    margin-bottom: 30px;
}

.bdm-hero h1 {
    font-size: 2.4em;
    margin-bottom: 20px;
    font-weight: 400;
    font-family: "Raleway", sans-serif;
}

.bdm-hero p {
    font-size: 1.3em;
    margin-bottom: 30px;
}

/* ABOUT SECTION */
.bdm-about {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.8;
}

.highlight-box {
    background: white;
    border-left: 4px solid #8CBB27;
    padding: 20px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.highlight-box i {
    font-size: 2em;
    color: #8CBB27;
    margin-right: 20px;
}

.highlight-box p {
    margin: 0;
    font-size: 1.1em;
    font-weight: 500;
}

/* FEATURES SECTION */
/* FEATURES SECTION */
.bdm-features {
    padding: 80px 0;
    background-color: white;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    width: calc(33.333% - 20px);
    min-width: 280px;
    max-width: 300px;
    box-sizing: border-box;
}

/* Para las últimas dos cards cuando hay 5 elementos */
.features-grid:has(.feature-card:nth-last-child(2):nth-child(3n+1)) {
    justify-content: space-around;
}

/* Tablet: 2 columnas */
@media (max-width: 1024px) {
    .feature-card {
        width: calc(50% - 15px);
    }
    
    .features-grid:has(.feature-card:nth-last-child(1):nth-child(2n+1)) {
        justify-content: flex-start;
    }
}

/* Móvil: 1 columna */
@media (max-width: 768px) {
    .feature-card {
        width: 100%;
        max-width: 400px;
        min-width: auto;
    }
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: rgba(0,80,150,0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,80,150,0.05);
    border-radius: 50%;
    color: #005096;
    font-size: 2em;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #005096, #8CBB27);
    color: white;
    transform: scale(1.1);
}

.feature-card h3 {
    color: #005096;
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: #555;
    font-size: 1.3em;
    line-height: 1.5;
}

/* TARGET SECTION */
.bdm-target {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.target-card {
    background: white;
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.target-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.target-card i {
    font-size: 2.5em;
    color: #8CBB27;
    margin-bottom: 20px;
}

.target-card h3 {
    color: #005096;
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: 600;
}

.target-card p {
    color: #555;
    font-size: 1.2em;
}

/* BENEFITS SECTION */
.bdm-benefits {
    padding: 80px 0;
    background-color: white;
}

.benefits-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.benefits-content, .how-it-works {
    background: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.benefit-item i {
    font-size: 1.5em;
    color: #8CBB27;
    margin-right: 20px;
    margin-top: 5px;
}

.benefit-item h3 {
    color: #005096;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.benefit-item p {
    color: #555;
    font-size: 1.2em;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.step-number {
    width: 30px;
    height: 30px;
    background: #8CBB27;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h3 {
    color: #005096;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.step-content p {
    color: #555;
    font-size: 1.2em;
}

/* TESTIMONIALS SECTION */
.bdm-testimonials {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.quote-icon {
    font-size: 3em;
    color: #8CBB27;
    line-height: 1;
    margin-bottom: 20px;
    font-family: "Raleway", sans-serif;
    font-weight: bold;
}

.testimonial-text {
    color: #555;
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.testimonial-author h4 {
    color: #005096;
    font-size: 1.4em;
    margin-bottom: 5px;
}

.testimonial-author p {
    color: #8CBB27;
    font-size: 1.2em;
}

/* CTA SECTION */
.bdm-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #005096 0%, #003366 100%);
    color: white;
    text-align: center;
}

.bdm-cta h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 400;
}

.bdm-cta p {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #8CBB27;
    color: white;
    font-size: 1.1em;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    border: 2px solid #8CBB27;
}

.cta-button:hover {
    background: transparent;
    color: #8CBB27;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .benefits-container {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.2em;
    }
    
    .bdm-hero h1 {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2em;
    }
    
    .bdm-hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .bdm-hero h1 {
        font-size: 1.8em;
    }
    
    .bdm-hero p {
        font-size: 1.1em;
    }
    
    .features-grid, .target-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-box {
        flex-direction: column;
        text-align: center;
    }
    
    .highlight-box i {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8em;
    }
    
    .bdm-hero {
        height: 70vh;
        min-height: 300px;
    }
    
    .bdm-logo {
        max-width: 250px;
    }
    
    .bdm-cta h2 {
        font-size: 2em;
    }
    
    .bdm-cta p {
        font-size: 1em;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
}