/* Source: page/inversiones.php */
/* HERO */
.hero-section {
    background: linear-gradient(135deg, #00a75d, #28a745, #007bff);
    color: #fff;
    padding: 90px 0 70px;
    text-align: center;
}
.hero-section h1 {
    font-size: 3rem;
    font-weight: 500;
}
.hero-section p {
    font-size: 1.25rem;
    opacity: .95;
}

/* BOTON SIMULADOR */
.simulador-btn {
    display: inline-block;
    background: linear-gradient(135deg, #fff, #f8f9fa);
    color: #00a75d;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid #fff;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    margin-top: 25px;
}
.simulador-btn:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
    color: #00a75d;
    text-decoration: none;
}

/* SECCIONES */
.section {
    padding: 90px 0;
}
.section-light { background: #fff; }
.section-gray { background: #f4f6f9; }
.section-cta {
    background: linear-gradient(135deg, #00a75d, #28a745);
    color: #fff;
    text-align: center;
}

/* TITULOS Y LINEAS */
.section-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #0a4f6d;
    margin-bottom: 10px;
}
.section-subtitle {
    color: #6c757d;
    margin-bottom: 40px;
    font-size: 1.1rem;
}
.line {
    width: 70px;
    height: 3px;
    background: #00a75d;
    margin: 15px auto 30px;
}
.line-left {
    width: 70px;
    height: 3px;
    background: #00a75d;
    margin: 15px 0 30px;
}

/* CARDS BENEFICIOS */
.benefit-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border-top: 4px solid #00a75d;
}
.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}
.benefit-icon {
    font-size: 3rem;
    color: #00a75d;
    margin-bottom: 20px;
}

/* LISTAS REQUISITOS */
.req-list {
    padding-left: 0;
    margin-top: 20px;
}
.req-list li {
    list-style: none;
    padding: 12px 0;
    border-bottom: 1px solid #e1e1e1;
    font-size: 0.95rem;
    position: relative;
}
.req-list li::before {
    content: "✓";
    color: #00a75d;
    font-weight: bold;
    font-size: 1.1rem;
    margin-right: 12px;
}

/* IMAGENES SERVICIOS */
.service-img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 25px 70px rgba(0,0,0,.15);
    transition: all 0.3s ease;
}
.service-img:hover {
    transform: scale(1.02);
    box-shadow: 0 35px 90px rgba(0,0,0,.2);
}

/* TASAS */
.tasas-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    max-width: 750px;
    margin: auto;
    transition: 0.3s;
}
.tasas-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}
.tasas-table {
    width: 100%;
    border-collapse: collapse;
}
.tasas-table thead {
    background: #0a4f6d;
    color: #fff;
}
.tasas-table th {
    padding: 16px;
    font-weight: 600;
    text-align: center;
}
.tasas-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}
.tasas-table tbody tr {
    transition: 0.2s;
}
.tasas-table tbody tr:hover {
    background: #f8fbff;
}
.destacado {
    background: #f0fff5;
    font-weight: 600;
}
.tasa-destacada {
    color: #00a75d;
    font-size: 1.1rem;
}
.badge-mejor {
    background: #00a75d;
    color: #fff;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    margin-left: 8px;
}

/* CASH COLATERAL */
.collateral-section {
    background: linear-gradient(180deg, #f7fafc 0%, #eef7f1 100%);
}
.collateral-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #e9f8ef;
    color: #00a75d;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.collateral-subtitle {
    max-width: 760px;
    margin: 0 auto;
}
.collateral-benefit-card {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-section h1 { font-size: 2.3rem; }
    .hero-section p { font-size: 1.1rem; }
    .section { padding: 60px 0; }
    .section-title { font-size: 1.8rem; }
    .simulador-btn {
        padding: 15px 30px;
        font-size: 1rem;
        margin: 20px 0;
    }
    .benefit-card { margin-bottom: 20px; }
}