/* Estilos encapsulados para no romper tu tema de WordPress */
    .finan360-landing {
        font-family: inherit;
        line-height: 1.6;
        color: #333333;
    }

    .finan360-hero {
        text-align: center;
        padding: 1rem 1rem;
        border-bottom: 1px solid #e2e8f0;
    }

    .finan360-hero h1 {
        color: #102a43;
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        font-weight: bold;
    }

    .finan360-hero p {
        font-size: 1.2rem;
        max-width: 800px;
        margin: 0 auto 2rem auto;
        color: #4a5568;
    }

    .finan360-btn-group {
        display: flex;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
        margin-bottom: 2.5rem;
    }

    /* CORRECCIÓN PARA BOTONES E ICONOS */
    .finan360-btn {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        gap: 10px; 
        padding: 12px 28px;
        font-size: 1rem;
        font-weight: 600;
        text-decoration: none !important;
        border-radius: 8px;
        transition: all 0.3s ease;
        cursor: pointer;
        border: 2px solid transparent;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        /* ESTO FUERZA EL CENTRADO VERTICAL IGNORANDO EL TEMA DE WORDPRESS */
        line-height: 1 !important; 
    }

    .finan360-btn svg {
        width: 18px !important;
        height: 18px !important;
        flex-shrink: 0; 
        fill: currentColor; 
        /* ESTO QUITA EL ESPACIO FANTASMA DEBAJO DEL ICONO */
        display: block !important; 
    }

    /* Colores y Hovers */
    .finan360-btn-primary {
        background-color: #5db648 !important; 
        color: #ffffff !important;
    }

    .finan360-btn-primary:hover {
        background-color: #4a9439 !important;
        transform: translateY(-2px);
    }

    .finan360-btn-outline {
        background-color: transparent !important;
        color: #102a43 !important;
        border-color: #102a43 !important;
    }

    .finan360-btn-outline:hover {
        background-color: #102a43 !important;
        color: #ffffff !important;
        transform: translateY(-2px);
    }

    .finan360-features {
        padding: 4rem 1rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .finan360-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .finan360-card {
        background: #ffffff;
        padding: 2.5rem;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        text-align: left;
        transition: transform 0.3s ease;
        border-top: 4px solid #5db648; 
    }

    .finan360-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .finan360-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .finan360-card h3 {
        color: #102a43;
        font-size: 1.4rem;
        margin-bottom: 1rem;
        margin-top: 0;
    }

    .finan360-card p {
        color: #718096;
        font-size: 1rem;
        margin: 0;
    }